1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Auto-Organize Copy/Move Option, Fix for Overwrite Existing File

Addition of the option in Auto-Organize to copy or move files from watch
folder.
Fix to use the Overwrite Existing File option from the config rather
than hardcoded value.
This commit is contained in:
Tensre 2014-03-05 20:44:29 -08:00
parent ea09e1d7d0
commit e7160955a1
2 changed files with 13 additions and 0 deletions

View file

@ -143,6 +143,14 @@
</div>
<br />
<ul data-role="listview" class="ulForm">
<li>
<label for="txtDeleteLeftOverFiles">Episode Copy/Move </label>
<select name="copyOrMoveFile" id="copyOrMoveFile" data-mini="true">
<option value="true">Copy</option>
<option value="false">Move</option>
</select>
<div class="fieldDescription">Copy or move files from the "Watch Folder"</div>
</li>
<li>
<input type="checkbox" id="chkOverwriteExistingEpisodes" name="chkOverwriteExistingEpisodes" />
<label for="chkOverwriteExistingEpisodes">Overwrite existing episodes</label>