diff options
Diffstat (limited to 'Jellyfin.Server.Implementations/Trickplay')
| -rw-r--r-- | Jellyfin.Server.Implementations/Trickplay/TrickplayManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Server.Implementations/Trickplay/TrickplayManager.cs b/Jellyfin.Server.Implementations/Trickplay/TrickplayManager.cs index 73e31279f..f6c48498c 100644 --- a/Jellyfin.Server.Implementations/Trickplay/TrickplayManager.cs +++ b/Jellyfin.Server.Implementations/Trickplay/TrickplayManager.cs @@ -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); |
