mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-01 00:43:37 +00:00
Fix for Indexer API issues
This commit is contained in:
parent
8ac0b79986
commit
e7170328aa
4 changed files with 8 additions and 8 deletions
|
@ -734,7 +734,7 @@ div#summary tr td {
|
|||
#donate a,
|
||||
#donate a:hover {
|
||||
border: 0 ;
|
||||
padding: 4px 15px 4px;
|
||||
padding: 8px 15px 8px;
|
||||
}
|
||||
|
||||
#contentWrapper {
|
||||
|
|
|
@ -278,7 +278,7 @@ a > i.icon-question-sign { background-image: url("$sbRoot/images/glyphicons-half
|
|||
<li><a href="$sbRoot/config/anime/"><img src="$sbRoot/images/menu/config16.png" alt="" width="16" height="16" />Anime</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li id="donate"><a href="https://sickrage.tv/upgrade/" rel="noreferrer" onclick="window.open('${sickbeard.ANON_REDIRECT}' + this.href); return false;"><img src="$sbRoot/images/btn-google.jpg" alt="[donate]" /></a></li>
|
||||
<li id="donate"><a href="http://sr-upgrade.appspot.com" rel="noreferrer" onclick="window.open('${sickbeard.ANON_REDIRECT}' + this.href); return false;"><img src="$sbRoot/images/btn-google.jpg" alt="[donate]" /></a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
|
|
|
@ -582,9 +582,9 @@ class Tvdb:
|
|||
value = parse(value, fuzzy=True).date()
|
||||
value = value.strftime("%Y-%m-%d")
|
||||
|
||||
if key == 'airs_time':
|
||||
value = parse(value).time()
|
||||
value = value.strftime("%I:%M %p")
|
||||
#if key == 'airs_time':
|
||||
# value = parse(value).time()
|
||||
# value = value.strftime("%I:%M %p")
|
||||
except:
|
||||
pass
|
||||
|
||||
|
|
|
@ -454,9 +454,9 @@ class TVRage:
|
|||
value = parse(value, fuzzy=True).date()
|
||||
value = value.strftime("%Y-%m-%d")
|
||||
|
||||
if key == 'airs_time':
|
||||
value = parse(value).time()
|
||||
value = value.strftime("%I:%M %p")
|
||||
#if key == 'airs_time':
|
||||
# value = parse(value).time()
|
||||
# value = value.strftime("%I:%M %p")
|
||||
except:
|
||||
pass
|
||||
|
||||
|
|
Loading…
Reference in a new issue