Closed ale183 closed 3 months ago
With "Move on import" enabled and "Rename on import" disabled the file remains in the import folder for two reasons:
WebAOMRenamer.cs
success
GetNewFileName
VideoLocal_PlaceService.cs
result.FileName
This commit should fix that behavior.
I'll need to look at the new renamer internals for the latter change, but the success change seems to be fine. Will check when I get home.
With "Move on import" enabled and "Rename on import" disabled the file remains in the import folder for two reasons:
WebAOMRenamer.cs
the variablesuccess
is always false, unlessGetNewFileName
is called (only if rename is enabled)VideoLocal_PlaceService.cs
there is a check onresult.FileName
, which is always null if the rename is disabled, and the file is never movedThis commit should fix that behavior.