diff --git a/FlowPluginsTs/FlowHelpers/1.0.0/fileMoveOrCopy.ts b/FlowPluginsTs/FlowHelpers/1.0.0/fileMoveOrCopy.ts index d15e652..d3a4871 100644 --- a/FlowPluginsTs/FlowHelpers/1.0.0/fileMoveOrCopy.ts +++ b/FlowPluginsTs/FlowHelpers/1.0.0/fileMoveOrCopy.ts @@ -68,6 +68,7 @@ const tryMove = async ({ return true; }; +// eslint-disable-next-line @typescript-eslint/no-unused-vars const tryMvdir = async ({ sourcePath, destinationPath, @@ -219,16 +220,17 @@ const fileMoveOrCopy = async ({ return true; } - const mvdird = await tryMvdir({ - sourcePath, - destinationPath, - args, - sourceFileSize, - }); - - if (mvdird) { - return true; - } + // disable: https://github.com/HaveAGitGat/Tdarr/issues/885 + // const mvdird = await tryMvdir({ + // sourcePath, + // destinationPath, + // args, + // sourceFileSize, + // }); + + // if (mvdird) { + // return true; + // } args.jobLog('Failed to move file, trying copy'); }