0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-10 23:36:14 -05:00

Merge pull request #3791 from ErisDS/issue-3790

Display correct new Ghost version
This commit is contained in:
Hannah Wolfe 2014-08-15 18:34:03 +01:00
commit 7f4231c83d

View file

@ -210,7 +210,7 @@ function showUpdateNotification() {
} }
if (display && display.value && currentVersion && semver.gt(display.value, currentVersion)) { if (display && display.value && currentVersion && semver.gt(display.value, currentVersion)) {
return when(currentVersion); return when(display.value);
} }
return when(false); return when(false);
}); });