mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-29 11:02:14 +01:00
Apply suggestions from code review for flipped conditions.
Co-Authored-By: EraYaN <EraYaN@users.noreply.github.com>
This commit is contained in:
@@ -58,7 +58,7 @@ namespace MediaBrowser.Providers.TV
|
||||
}
|
||||
|
||||
// Check this in order to avoid logging an exception due to directory not existing
|
||||
if (Directory.Exists(seriesDataPath))
|
||||
if (!Directory.Exists(seriesDataPath))
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user