diff options
| author | Nick <20588554+nicknsy@users.noreply.github.com> | 2023-09-04 12:30:20 -0700 |
|---|---|---|
| committer | Nick <20588554+nicknsy@users.noreply.github.com> | 2023-09-04 12:30:20 -0700 |
| commit | 5a860710a849b9d67d12731f1a616c4a3904487d (patch) | |
| tree | 3d2e613d41a0a86a1a25f6a6d68a37dc326e77c0 /MediaBrowser.Controller | |
| parent | 65b269c151e083a7ed30b010a470e1fc63765904 (diff) | |
Make TrickplayManifest dictionary key a string rather than Guid
Diffstat (limited to 'MediaBrowser.Controller')
| -rw-r--r-- | MediaBrowser.Controller/Trickplay/ITrickplayManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Trickplay/ITrickplayManager.cs b/MediaBrowser.Controller/Trickplay/ITrickplayManager.cs index 7bea54fbab..0c41f30235 100644 --- a/MediaBrowser.Controller/Trickplay/ITrickplayManager.cs +++ b/MediaBrowser.Controller/Trickplay/ITrickplayManager.cs @@ -54,7 +54,7 @@ public interface ITrickplayManager /// </summary> /// <param name="item">The item.</param> /// <returns>A map of media source id to a map of tile width to trickplay info.</returns> - Task<Dictionary<Guid, Dictionary<int, TrickplayInfo>>> GetTrickplayManifest(BaseItem item); + Task<Dictionary<string, Dictionary<int, TrickplayInfo>>> GetTrickplayManifest(BaseItem item); /// <summary> /// Gets the path to a trickplay tile image. |
