Skip to content

Commit

Permalink
Avoid loading data from groups
Browse files Browse the repository at this point in the history
  • Loading branch information
andig committed Apr 1, 2018
1 parent 4e2717e commit 1289073
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htdocs/js/entity.js
Expand Up @@ -327,7 +327,7 @@ Entity.prototype.loadDetails = function(skipDefaultErrorHandling) {
* @return jQuery dereferred object
*/
Entity.prototype.loadData = function() {
if (!this.isChannel() && this.active) {
if (!(this.isChannel() && this.active)) {
return $.Deferred().resolve().promise();
}
return vz.load({
Expand Down

0 comments on commit 1289073

Please sign in to comment.