aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/Persistence/SqliteItemRepository.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2015-03-24 23:54:32 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2015-03-24 23:54:32 -0400
commitbbaf88ae1f088584f9130852cd99ad372adce136 (patch)
treed3f1f19c44527f96d603b09a6c960f33b3efd2c7 /MediaBrowser.Server.Implementations/Persistence/SqliteItemRepository.cs
parente62270df353aa8e2ae0a20aeff7d5aa6f9b62630 (diff)
update tv db cleanup
Diffstat (limited to 'MediaBrowser.Server.Implementations/Persistence/SqliteItemRepository.cs')
-rw-r--r--MediaBrowser.Server.Implementations/Persistence/SqliteItemRepository.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/MediaBrowser.Server.Implementations/Persistence/SqliteItemRepository.cs b/MediaBrowser.Server.Implementations/Persistence/SqliteItemRepository.cs
index 4c45d5b83..12ce60d45 100644
--- a/MediaBrowser.Server.Implementations/Persistence/SqliteItemRepository.cs
+++ b/MediaBrowser.Server.Implementations/Persistence/SqliteItemRepository.cs
@@ -521,8 +521,8 @@ namespace MediaBrowser.Server.Implementations.Persistence
}
}
}
-
- public IEnumerable<string> GetItemsOfType(Type type)
+
+ public IEnumerable<Guid> GetItemsOfType(Type type)
{
if (type == null)
{
@@ -541,7 +541,7 @@ namespace MediaBrowser.Server.Implementations.Persistence
{
while (reader.Read())
{
- yield return reader.GetString(0);
+ yield return reader.GetGuid(0);
}
}
}