Skip to content

Commit

Permalink
MOD: issues#36
Browse files Browse the repository at this point in the history
  • Loading branch information
wismartzy authored and leohowell committed Sep 21, 2020
1 parent 34306ac commit 069f776
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion www/log_manage/management/commands/persistence_hit_log.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def parse_msg(msg):
d = json.loads(body)
d['time'] = dt
req_body = d['req_body']
d['user_id'] = req_body['user_id']
d['user_id'] = req_body.get('user_id', '')
d['req_body'] = json.dumps(req_body, ensure_ascii=False)
return d

Expand Down

0 comments on commit 069f776

Please sign in to comment.