Fix DatePlayed

DatePlayed should be empty when unwatched. And other minor fixes.
This commit is contained in:
angelblue05 2018-09-07 13:10:14 -05:00
parent aac8229f9b
commit 9005ad84be
3 changed files with 8 additions and 4 deletions

View file

@ -667,7 +667,7 @@ msgid "Add server"
msgstr ""
msgctxt "#33135"
msgid "Kodi will now restart to apply a small patch for your database version."
msgid "Kodi will now restart to apply a small patch for your Kodi version."
msgstr ""
msgctxt "#33136"

View file

@ -197,7 +197,6 @@ class Connect(object):
else:
raise RuntimeError("No server selected")
LOG.info(self.client.get_credentials())
return self.select_servers()
def setup_manual_server(self):

View file

@ -276,7 +276,10 @@ class Actions(object):
if obj['Premiere']:
obj['Premiere'] = obj['Premiere'].split('T')[0]
if obj['DatePlayed']:
if not obj['Played']:
obj['DatePlayed'] = None
elif obj['DatePlayed']:
obj['DatePlayed'] = obj['DatePlayed'].split('.')[0].replace('T', " ")
metadata = {
@ -420,7 +423,9 @@ class Actions(object):
obj['PlayCount'] = API.get_playcount(obj['Played'], obj['PlayCount']) or 0
obj['Rating'] = obj['Rating'] or 0
if obj['FileDate'] or obj['DatePlayed']:
if not obj['Played']:
obj['DatePlayed'] = None
elif obj['FileDate'] or obj['DatePlayed']:
obj['DatePlayed'] = (obj['DatePlayed'] or obj['FileDate']).split('.')[0].replace('T', " ")
obj['FileDate'] = "%s.%s.%s" % tuple(reversed(obj['FileDate'].split('T')[0].split('-')))