Merge pull request #1982 from keepassxreboot/fix/check_for_updates_button

Fix Check for updates button response
This commit is contained in:
Sami Vänttinen 2023-09-07 13:56:57 +03:00 committed by GitHub
commit 6b0529ec30
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -135,7 +135,7 @@ kpxcEvent.onGetKeePassXCVersions = async function(tab) {
kpxcEvent.onCheckUpdateKeePassXC = async function() {
keepass.checkForNewKeePassXCVersion();
return { current: keepass.currentKeePassXC.version, latest: keepass.latestKeePassXC.version };
return { current: keepass.currentKeePassXC, latest: keepass.latestKeePassXC.version };
};
kpxcEvent.onUpdateAvailableKeePassXC = async function() {