Private GIT

Skip to content
Snippets Groups Projects
Commit 4764ebd2 authored by Nic Wolfe's avatar Nic Wolfe
Browse files

Fix the restart timeout accidentally being too low

parent 523d4534
Branches
Tags
No related merge requests found
......@@ -74,7 +74,7 @@
<input type="checkbox" name="rename_episodes" id="rename_episodes" #if $sickbeard.RENAME_EPISODES == True then "checked=\"checked\"" else ""# />
<label class="clearfix" for="rename_episodes">
<span class="component-title">Rename Episodes</span>
<span class="component-desc">Rename episode using the naming settings in <a href="$sbRoot/config/general">General</a>?</span>
<span class="component-desc">Rename episode using the naming settings below?</span>
</label>
</div>
......
......@@ -45,7 +45,7 @@ $(document).ready(function()
$('#restart_message').show();
// if it is taking forever just give up
if (num_restart_waits > 10) {
if (num_restart_waits > 250) {
$('#restart_loading').hide();
$('#restart_failure').show();
$('#restart_fail_message').show();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment