diff options
| author | dkanada <dkanada@users.noreply.github.com> | 2020-06-17 02:16:17 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-06-17 02:16:17 +0900 |
| commit | e77f6194f2e515780e313353c1677fc68a5343f0 (patch) | |
| tree | d8175023054a5c89ef2b586ae65e29c476b4b492 | |
| parent | f5d82441a49c54022904603f2a7b196e48888f14 (diff) | |
add missing comma in array
| -rw-r--r-- | Jellyfin.Server/Migrations/MigrationRunner.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Server/Migrations/MigrationRunner.cs b/Jellyfin.Server/Migrations/MigrationRunner.cs index d49157d18..d633c554d 100644 --- a/Jellyfin.Server/Migrations/MigrationRunner.cs +++ b/Jellyfin.Server/Migrations/MigrationRunner.cs @@ -20,7 +20,7 @@ namespace Jellyfin.Server.Migrations typeof(Routines.CreateUserLoggingConfigFile), typeof(Routines.MigrateActivityLogDb), typeof(Routines.RemoveDuplicateExtras), - typeof(Routines.AddDefaultPluginRepository) + typeof(Routines.AddDefaultPluginRepository), typeof(Routines.MigrateUserDb) }; |
