Fix typo that broke duration sorting

Fix css bug
This commit is contained in:
Tim 2015-06-24 19:02:22 +02:00
commit 9ca9b5e9ae
2 changed files with 2 additions and 2 deletions

View file

@ -8101,7 +8101,7 @@ ol.test >li {
.home-platforms-instance-poster { .home-platforms-instance-poster {
float: left; float: left;
height: 120px; height: 120px;
min-width: 81px; max-width: 81px;
padding: 5px 10px 5px 10px; padding: 5px 10px 5px 10px;
} }

View file

@ -215,7 +215,7 @@ class PlexWatch(object):
'xml', 'xml',
'round((julianday(datetime(stopped, "unixepoch", "localtime")) - \ 'round((julianday(datetime(stopped, "unixepoch", "localtime")) - \
julianday(datetime(time, "unixepoch", "localtime"))) * 86400) - \ julianday(datetime(time, "unixepoch", "localtime"))) * 86400) - \
(case when paused_counter is null then 0 else paused_counter end) as duration,' (case when paused_counter is null then 0 else paused_counter end) as duration',
'grandparentRatingKey as grandparent_rating_key' 'grandparentRatingKey as grandparent_rating_key'
] ]
try: try: