Skip to content

Commit

Permalink
Merge pull request #560 from IAkumaI/master
Browse files Browse the repository at this point in the history
Fix App._autoRefresh for several applications
  • Loading branch information
ericyhwang authored Aug 26, 2019
2 parents 0b5657f + 62a62bf commit 0286364
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/App.server.js
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ App.prototype._autoRefresh = function(backend) {
backend.use('receive', function(request, next) {
var data = request.data;
if (data.derby) {
return app._handleMessage(request.agent, data.derby, data);
app._handleMessage(request.agent, data.derby, data);
}
next();
});
Expand Down
2 changes: 1 addition & 1 deletion lib/Page.js
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ Page.prototype._addModelListeners = function(eventModel) {
model.removeListener('remove', removeListener);
model.removeListener('move', moveListener);
};
}
};
Page.prototype._addModelListenersImmediate = function(eventModel) {
var model = this.model;
if (!model) return;
Expand Down

0 comments on commit 0286364

Please sign in to comment.