aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Data/SqliteItemRepository.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Emby.Server.Implementations/Data/SqliteItemRepository.cs')
-rw-r--r--Emby.Server.Implementations/Data/SqliteItemRepository.cs18
1 files changed, 0 insertions, 18 deletions
diff --git a/Emby.Server.Implementations/Data/SqliteItemRepository.cs b/Emby.Server.Implementations/Data/SqliteItemRepository.cs
index c5ba6c892..51f91acf3 100644
--- a/Emby.Server.Implementations/Data/SqliteItemRepository.cs
+++ b/Emby.Server.Implementations/Data/SqliteItemRepository.cs
@@ -1990,24 +1990,6 @@ namespace Emby.Server.Implementations.Data
}
index++;
- if (string.IsNullOrWhiteSpace(item.Tagline))
- {
- var movie = item as Movie;
- if (movie != null && movie.Taglines.Count > 0)
- {
- movie.Tagline = movie.Taglines[0];
- }
- }
-
- if (type == typeof(Person) && item.ProductionLocations.Count == 0)
- {
- var person = (Person)item;
- if (!string.IsNullOrWhiteSpace(person.PlaceOfBirth))
- {
- item.ProductionLocations = new List<string> { person.PlaceOfBirth };
- }
- }
-
return item;
}