Fix None values in stream data for pre v2 history

This commit is contained in:
JonnyWong16 2018-01-05 21:37:54 -08:00
parent 08c32e875e
commit 5722a52082
2 changed files with 24 additions and 2 deletions

View file

@ -954,6 +954,7 @@ class DataFactory(object):
'grandparent_title': item['grandparent_title']
}
stream_output = {k: v or '' for k, v in stream_output.iteritems()}
return stream_output
def get_metadata_details(self, rating_key):