diff options
| author | Cody Robibero <cody@robibe.ro> | 2024-03-03 13:32:55 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-03 13:32:55 -0700 |
| commit | f7f3ad9eb792a02ba1815c8a316e02f9ed89fe85 (patch) | |
| tree | 03e5867c6e6e002a979ab80c8d2ea7882c8e54a9 /MediaBrowser.Controller/Library/ILibraryManager.cs | |
| parent | 3bd1a5c5574d2a0c1bc1b8d9384c1c7c900ac206 (diff) | |
Precache livetv program images (#11083)
* Precache livetv program images
* return if cache hit
* use EnsureSuccessStatusCode
* Read proper bytes
Diffstat (limited to 'MediaBrowser.Controller/Library/ILibraryManager.cs')
| -rw-r--r-- | MediaBrowser.Controller/Library/ILibraryManager.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Library/ILibraryManager.cs b/MediaBrowser.Controller/Library/ILibraryManager.cs index e44c09783..6532f7a34 100644 --- a/MediaBrowser.Controller/Library/ILibraryManager.cs +++ b/MediaBrowser.Controller/Library/ILibraryManager.cs @@ -517,8 +517,9 @@ namespace MediaBrowser.Controller.Library /// <param name="item">The item.</param> /// <param name="image">The image.</param> /// <param name="imageIndex">Index of the image.</param> + /// <param name="removeOnFailure">Whether to remove the image from the item on failure.</param> /// <returns>Task.</returns> - Task<ItemImageInfo> ConvertImageToLocal(BaseItem item, ItemImageInfo image, int imageIndex); + Task<ItemImageInfo> ConvertImageToLocal(BaseItem item, ItemImageInfo image, int imageIndex, bool removeOnFailure = true); /// <summary> /// Gets the items. |
