Do not display whatsnew for new users

This commit is contained in:
Gautier P 2021-03-23 11:05:46 +01:00
parent 0e8e040521
commit 055a5f54eb

View file

@ -26,7 +26,7 @@ BR.WhatsNew = {
var currentVersion = localStorage.getItem('changelogVersion'); var currentVersion = localStorage.getItem('changelogVersion');
return !currentVersion || currentVersion < this.getLatestVersion(); return currentVersion && currentVersion < this.getLatestVersion();
}, },
prepare: function (newOnly) { prepare: function (newOnly) {