aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Barron <barronpm@gmail.com>2020-05-15 14:33:36 -0400
committerPatrick Barron <barronpm@gmail.com>2020-05-15 14:33:36 -0400
commit79dee27299bda60f67e98eda8c309b1f25e0893b (patch)
treea8d3d8ee0a69b9406a45d1f2ed0325a6f8524685
parenta7c2e524a9571f4b6747908db94d0241d73ae5f3 (diff)
Fixed indentation
-rw-r--r--Jellyfin.Server/Migrations/Routines/MigrateActivityLogDb.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Jellyfin.Server/Migrations/Routines/MigrateActivityLogDb.cs b/Jellyfin.Server/Migrations/Routines/MigrateActivityLogDb.cs
index 079b5b5dc..b3cc29708 100644
--- a/Jellyfin.Server/Migrations/Routines/MigrateActivityLogDb.cs
+++ b/Jellyfin.Server/Migrations/Routines/MigrateActivityLogDb.cs
@@ -94,17 +94,17 @@ namespace Jellyfin.Server.Migrations.Routines
if (entry[2].SQLiteType != SQLiteType.Null)
{
- newEntry.Overview = entry[2].ToString();
+ newEntry.Overview = entry[2].ToString();
}
if (entry[3].SQLiteType != SQLiteType.Null)
{
- newEntry.ShortOverview = entry[3].ToString();
+ newEntry.ShortOverview = entry[3].ToString();
}
if (entry[5].SQLiteType != SQLiteType.Null)
{
- newEntry.ItemId = entry[5].ToString();
+ newEntry.ItemId = entry[5].ToString();
}
return newEntry;