diff --git a/src/NzbDrone.Core/Datastore/Migration/034_history_fix_data_titles.cs b/src/NzbDrone.Core/Datastore/Migration/034_history_fix_data_titles.cs index 70428deda..450c33cb4 100644 --- a/src/NzbDrone.Core/Datastore/Migration/034_history_fix_data_titles.cs +++ b/src/NzbDrone.Core/Datastore/Migration/034_history_fix_data_titles.cs @@ -23,7 +23,7 @@ namespace NzbDrone.Core.Datastore.Migration using (var selectCommand = conn.CreateCommand()) { selectCommand.Transaction = tran; - selectCommand.CommandText = "SELECT \"Id\", \"Data\", \"EventType\" FROM \"History\""; + selectCommand.CommandText = "SELECT \"Id\", \"Data\", \"EventType\" FROM \"History\" WHERE \"EventType\" != 3"; using var reader = selectCommand.ExecuteReader();