mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-12-27 18:06:43 +00:00
Only move trickplay file should not be saved with media to metadata dir (#12704)
This commit is contained in:
parent
30be00adb2
commit
38d0b004ba
|
@ -105,7 +105,7 @@ public class TrickplayManager : ITrickplayManager
|
|||
_logger.LogInformation("Moved trickplay images for {ItemName} to {Location}", video.Name, mediaOutputDir);
|
||||
}
|
||||
}
|
||||
else if (Directory.Exists(mediaOutputDir))
|
||||
else if (!shouldBeSavedWithMedia && Directory.Exists(mediaOutputDir))
|
||||
{
|
||||
var mediaDirFiles = Directory.GetFiles(mediaOutputDir);
|
||||
var localDirExists = Directory.Exists(localOutputDir);
|
||||
|
|
Loading…
Reference in a new issue