Fix typo in Autoupdate.newClientAvailable

This commit is contained in:
Matthew Arbesfeld
2014-08-10 17:35:56 -07:00
parent 1f6f15dc20
commit c6aa178f22

View File

@@ -37,7 +37,7 @@ Autoupdate.newClientAvailable = function () {
return !! ClientVersions.findOne({
refreshable: false,
version: {$ne: autoupdateVersion} }) ||
!! ClientVersionsRefreshable.findOne({
!! ClientVersions.findOne({
refreshable: true,
version: {$ne: autoupdateVersionRefreshable} });
};