Do not delete file locations for virtual episodes and seasons (#11954)

This commit is contained in:
Tim Eisele
2024-06-04 15:09:20 +02:00
committed by GitHub
parent 484aea1cdb
commit 23b1251393

View File

@@ -119,7 +119,8 @@ namespace MediaBrowser.Providers.TV
virtualSeason,
new DeleteOptions
{
DeleteFileLocation = true
// Internal metadata paths are removed regardless of this.
DeleteFileLocation = false
},
false);
}
@@ -176,7 +177,8 @@ namespace MediaBrowser.Providers.TV
episode,
new DeleteOptions
{
DeleteFileLocation = true
// Internal metadata paths are removed regardless of this.
DeleteFileLocation = false
},
false);
}