1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2024-12-21 23:32:27 +00:00

Fixed: Include preferred size in quality definition reset

(cherry picked from commit 8e925ac76d2f46cf5fef1ea62a20ae5e85d3000e)
This commit is contained in:
Michon van Dooren 2023-07-30 18:45:50 +02:00 committed by servarr
parent ffe80cb983
commit c762507f51

View file

@ -121,6 +121,7 @@ public void Execute(ResetQualityDefinitionsCommand message)
existing.MinSize = definition.MinSize;
existing.MaxSize = definition.MaxSize;
existing.PreferredSize = definition.PreferredSize;
existing.Title = message.ResetTitles ? definition.Title : existing.Title;
updateList.Add(existing);