Rollback, see if it fixes json decoding

This commit is contained in:
Arc 2020-02-05 11:36:52 +00:00 committed by GitHub
parent 5a74f52712
commit a245621ab8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,10 +3,13 @@ import sqlite3
class MegaEncoder(json.JSONEncoder): class MegaEncoder(json.JSONEncoder):
def default(self, obj): def default(self, o):
if isinstance(obj, sqlite3.Row): if type(o) == sqlite3.Row:
return {k: obj[k] for k in obj.keys()} val = {}
return obj for k in o.keys():
val[k] = o[k]
return val
return o
def megajson(obj): def megajson(obj):