mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Clean up handling of missing source/attachment in AttachmentExtractor.
This commit is contained in:
parent
79bbf09ecb
commit
4f3b883155
@ -66,23 +66,15 @@ namespace MediaBrowser.MediaEncoding.Attachments
|
|||||||
}
|
}
|
||||||
|
|
||||||
var mediaSources = await _mediaSourceManager.GetPlayackMediaSources(item, null, true, false, cancellationToken).ConfigureAwait(false);
|
var mediaSources = await _mediaSourceManager.GetPlayackMediaSources(item, null, true, false, cancellationToken).ConfigureAwait(false);
|
||||||
MediaSourceInfo mediaSource;
|
var mediaSource = mediaSources
|
||||||
MediaAttachment mediaAttachment;
|
.FirstOrDefault(i => string.Equals(i.Id, mediaSourceId, StringComparison.OrdinalIgnoreCase));
|
||||||
try
|
if (mediaSource == null)
|
||||||
{
|
|
||||||
mediaSource = mediaSources
|
|
||||||
.First(i => string.Equals(i.Id, mediaSourceId, StringComparison.OrdinalIgnoreCase));
|
|
||||||
}
|
|
||||||
catch (Exception ex) when (ex is ArgumentNullException || ex is InvalidOperationException)
|
|
||||||
{
|
{
|
||||||
throw new ResourceNotFoundException($"MediaSource {mediaSourceId} not found");
|
throw new ResourceNotFoundException($"MediaSource {mediaSourceId} not found");
|
||||||
}
|
}
|
||||||
try
|
var mediaAttachment = mediaSource.MediaAttachments
|
||||||
{
|
.FirstOrDefault(i => i.Index == attachmentStreamIndex);
|
||||||
mediaAttachment = mediaSource.MediaAttachments
|
if (mediaAttachment == null)
|
||||||
.First(i => i.Index == attachmentStreamIndex);
|
|
||||||
}
|
|
||||||
catch (Exception ex) when (ex is ArgumentNullException || ex is InvalidOperationException)
|
|
||||||
{
|
{
|
||||||
throw new ResourceNotFoundException($"MediaSource {mediaSourceId} has no attachment with stream index {attachmentStreamIndex}");
|
throw new ResourceNotFoundException($"MediaSource {mediaSourceId} has no attachment with stream index {attachmentStreamIndex}");
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user