mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-20 07:45:26 +03:00
live tv stream adjustments, add additional dlna params
This commit is contained in:
@@ -173,14 +173,6 @@ namespace MediaBrowser.Server.Implementations.FileOrganization
|
||||
|
||||
if (!overwriteExisting)
|
||||
{
|
||||
if (fileExists || otherDuplicatePaths.Count > 0)
|
||||
{
|
||||
result.Status = FileSortingStatus.SkippedExisting;
|
||||
result.StatusMessage = string.Empty;
|
||||
result.DuplicatePaths = otherDuplicatePaths;
|
||||
return;
|
||||
}
|
||||
|
||||
if (options.CopyOriginalFile && fileExists && IsSameEpisode(sourcePath, newPath))
|
||||
{
|
||||
_logger.Info("File {0} already copied to new path {1}, stopping organization", sourcePath, newPath);
|
||||
@@ -188,10 +180,16 @@ namespace MediaBrowser.Server.Implementations.FileOrganization
|
||||
result.StatusMessage = string.Empty;
|
||||
return;
|
||||
}
|
||||
|
||||
if (fileExists || otherDuplicatePaths.Count > 0)
|
||||
{
|
||||
result.Status = FileSortingStatus.SkippedExisting;
|
||||
result.StatusMessage = string.Empty;
|
||||
result.DuplicatePaths = otherDuplicatePaths;
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
PerformFileSorting(options, result);
|
||||
|
||||
if (overwriteExisting)
|
||||
|
||||
Reference in New Issue
Block a user