update tv db cleanup

This commit is contained in:
Luke Pulverenti
2015-03-24 23:54:32 -04:00
parent e62270df35
commit bbaf88ae1f
7 changed files with 23 additions and 20 deletions

View File

@@ -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);
}
}
}