mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-17 06:23:03 +03:00
update tv db cleanup
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user