mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-24 05:57:20 -04:00
Fixed trying to parse an episode xml file when it doesn't exist
This commit is contained in:
parent
977f8e970a
commit
ef0b277d2a
1 changed files with 2 additions and 0 deletions
|
@ -45,6 +45,7 @@ namespace MediaBrowser.TV.Providers
|
|||
if (!File.Exists(metadataFile))
|
||||
{
|
||||
await Task.FromResult<object>(null).ConfigureAwait(false);
|
||||
return;
|
||||
}
|
||||
}
|
||||
else
|
||||
|
@ -52,6 +53,7 @@ namespace MediaBrowser.TV.Providers
|
|||
if (!season.ContainsMetadataFile(metadataFile))
|
||||
{
|
||||
await Task.FromResult<object>(null).ConfigureAwait(false);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue