mirror of
https://github.com/keepassxreboot/keepassxc-browser.git
synced 2026-03-11 08:54:43 +00:00
Ignore update icon if update check is set to never
This commit is contained in:
parent
dfac8ef374
commit
774bc1d41f
2 changed files with 4 additions and 2 deletions
|
|
@ -881,9 +881,11 @@ keepass.keePassXCUpdateAvailable = function() {
|
|||
if (daysSinceLastCheck >= page.settings.checkUpdateKeePassXC) {
|
||||
keepass.checkForNewKeePassXCVersion();
|
||||
}
|
||||
|
||||
return keepass.compareVersion(keepass.currentKeePassXC, keepass.latestKeePassXC.version, false);
|
||||
}
|
||||
|
||||
return keepass.compareVersion(keepass.currentKeePassXC, keepass.latestKeePassXC.version, false);
|
||||
return false;
|
||||
};
|
||||
|
||||
keepass.checkForNewKeePassXCVersion = function() {
|
||||
|
|
|
|||
|
|
@ -111,7 +111,7 @@ options.initGeneralSettings = function() {
|
|||
$('#tab-general-settings input#defaultGroup').val(options.settings['defaultGroup']);
|
||||
|
||||
$('#tab-general-settings input[type=radio]').each(function() {
|
||||
if ($(this).val() === options.settings[$(this).attr('name')]) {
|
||||
if ($(this).val() === String(options.settings[$(this).attr('name')])) {
|
||||
$(this).attr('checked', options.settings[$(this).attr('name')]);
|
||||
}
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in a new issue