Skip to content

Commit

Permalink
fix: fix migration for older databases (<3.6(?))
Browse files Browse the repository at this point in the history
  • Loading branch information
revam committed Sep 29, 2023
1 parent 289942b commit b5dc0a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Shoko.Server/Databases/DatabaseFixes.cs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public static void MigrateGroupFilterToFilterPreset()
GroupFilterName = (string)fields[2],
ApplyToSeries = (int)fields[3],
BaseCondition = (int)fields[4],
Locked = (int)fields[5],
Locked = (int?)fields[5],
FilterType = (int)fields[6],
InvisibleInClients = (int)fields[7]
};
Expand Down

0 comments on commit b5dc0a0

Please sign in to comment.