mirror of
https://github.com/lidarr/Lidarr
synced 2025-01-03 13:34:54 +00:00
Fixed maintenance release not showing as such in AppUpdatedModal
Fixes #1462
This commit is contained in:
parent
ba07e60be6
commit
bed22b59bb
1 changed files with 4 additions and 0 deletions
|
@ -41,6 +41,10 @@ function mergeUpdates(items, version, prevVersion) {
|
|||
|
||||
const mergedUpdate = Object.assign({}, appliedUpdates[0], { changes: appliedChanges });
|
||||
|
||||
if (!appliedChanges.new.length && !appliedChanges.fixed.length) {
|
||||
mergedUpdate.changes = null;
|
||||
}
|
||||
|
||||
return mergedUpdate;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue