Execute update queries only for certain rows in migration 34

pull/1754/head
Bogdan 1 year ago
parent b2b877a8c3
commit 8785fe02e8

@ -50,6 +50,11 @@ namespace NzbDrone.Core.Datastore.Migration
data = jsonObject.ToJson();
if (!jsonObject.ContainsKey("grabTitle") && !jsonObject.ContainsKey("title"))
{
continue;
}
updatedHistory.Add(new
{
Id = id,

Loading…
Cancel
Save