Invoke onVersion when we know the current version even if there is no new version (for settings)

This commit is contained in:
Kegan Dougal 2016-02-03 16:50:05 +00:00
parent 4628cf82a7
commit b307a6d64e
2 changed files with 5 additions and 4 deletions

View file

@ -106,8 +106,8 @@ function onHashChange(ev) {
routeUrl(window.location);
}
function onNewVersion(current, latest) {
window.matrixChat.onNewVersion(current, latest);
function onVersion(current, latest) {
window.matrixChat.onVersion(current, latest);
}
var loaded = false;
@ -143,7 +143,7 @@ window.onload = function() {
if (!validBrowser) {
return;
}
UpdateChecker.setNewVersionListener(onNewVersion);
UpdateChecker.setVersionListener(onVersion);
UpdateChecker.run();
routeUrl(window.location);
loaded = true;