mirror of
https://github.com/keepassxreboot/keepassxc-browser.git
synced 2026-03-11 08:54:43 +00:00
Ignore prereleases on update check
This commit is contained in:
parent
2d1401aada
commit
50f0e0110e
1 changed files with 1 additions and 1 deletions
|
|
@ -975,7 +975,7 @@ keepass.checkForNewKeePassXCVersion = function() {
|
|||
xhr.onload = function(e) {
|
||||
if (xhr.readyState === 4 && xhr.status === 200) {
|
||||
const json = JSON.parse(xhr.responseText);
|
||||
if (json.tag_name) {
|
||||
if (json.tag_name && json.prerelease === false) {
|
||||
version = json.tag_name;
|
||||
keepass.latestKeePassXC.version = version;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue