Merge pull request #11978 from Shadowghost/do-to-fallback-to-media-dir

Fallback to local dir when saving to media dir fails
This commit is contained in:
Joshua M. Boniface 2024-06-05 17:49:57 -04:00 committed by GitHub
commit f41efb3b2c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -126,7 +126,11 @@ namespace MediaBrowser.Providers.Manager
var paths = GetSavePaths(item, type, imageIndex, mimeType, saveLocally);
var retryPaths = GetSavePaths(item, type, imageIndex, mimeType, !saveLocally);
string[] retryPaths = [];
if (saveLocally)
{
retryPaths = GetSavePaths(item, type, imageIndex, mimeType, false);
}
// If there are more than one output paths, the stream will need to be seekable
if (paths.Length > 1 && !source.CanSeek)