diff --git a/js/apps/system/_admin/aardvark/APP/frontend/js/collections/arangoUsers.js b/js/apps/system/_admin/aardvark/APP/frontend/js/collections/arangoUsers.js index ea6b11cf7c..0ecc8a5ee7 100644 --- a/js/apps/system/_admin/aardvark/APP/frontend/js/collections/arangoUsers.js +++ b/js/apps/system/_admin/aardvark/APP/frontend/js/collections/arangoUsers.js @@ -17,7 +17,7 @@ window.ArangoUsers = Backbone.Collection.extend({ }, fetch: function(options) { - if (window.App.currentUser) { + if (window.App.currentUser && window.App.currentDB.get("name") !== '_system') { this.url = frontendConfig.basePath + "/_api/user/" + encodeURIComponent(window.App.currentUser); } return Backbone.Collection.prototype.fetch.call(this, options);