1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-01-03 05:35:29 +00:00

Fixed: Include preferred size in quality definition reset

This commit is contained in:
Michon van Dooren 2023-07-30 18:45:50 +02:00 committed by GitHub
parent 560779cc1e
commit 8e925ac76d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -121,6 +121,7 @@ namespace NzbDrone.Core.Qualities
existing.MinSize = definition.MinSize;
existing.MaxSize = definition.MaxSize;
existing.PreferredSize = definition.PreferredSize;
existing.Title = message.ResetTitles ? definition.Title : existing.Title;
updateList.Add(existing);