Merge pull request #223 from itdoginfo/fix/version-check

fix: correct versions comparison
This commit is contained in:
Kirill Sobakin
2025-10-23 16:21:01 +03:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -386,7 +386,7 @@ function renderDiagnosticSystemInfoWidget() {
};
}
if (version !== diagnosticsSystemInfo.podkop_latest_version) {
if (version !== `v${diagnosticsSystemInfo.podkop_latest_version}`) {
return {
key: 'Podkop',
value: version,

View File

@@ -3961,7 +3961,7 @@ function renderDiagnosticSystemInfoWidget() {
value: version
};
}
if (version !== diagnosticsSystemInfo.podkop_latest_version) {
if (version !== `v${diagnosticsSystemInfo.podkop_latest_version}`) {
return {
key: "Podkop",
value: version,