Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion packages/settings-view/lib/package-manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,10 @@ module.exports = class PackageManager {
if (clearCache) {
this.clearOutdatedCache();
// Short circuit if we have cached data.
} else if (this.apmCache.loadOutdated.value && (this.apmCache.loadOutdated.expiry > Date.now())) {
} else if (
(this.apmCache.loadOutdated.value && (this.apmCache.loadOutdated.expiry > Date.now())) ||
atom.devMode
) {
return callback(null, this.apmCache.loadOutdated.value);
}

Expand Down
Loading