mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 02:37:08 -07: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…
Add table
Add a link
Reference in a new issue