Stop throwing errors during playback reporting

This commit is contained in:
Matt 2021-05-11 19:55:08 -04:00
parent 293dc7a768
commit 405a0038a3
1 changed files with 3 additions and 0 deletions

View File

@ -173,6 +173,9 @@ class HTTP(object):
return clean_none_dict_values(response) return clean_none_dict_values(response)
except ValueError: except ValueError:
return return
except TypeError:
# Empty json
return
def _request(self, data): def _request(self, data):