Update statistics_hook.py

This commit is contained in:
HibiKier 2021-06-23 19:32:30 +08:00 committed by GitHub
parent ba16dc6f97
commit 55e29e0a4b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -102,7 +102,10 @@ def check_exists_key(group_id: str, plugin_name: str):
for i in range(7):
_prefix_count_dict['week_statistics'][group_id][str(i)] = {}
_prefix_count_dict['week_statistics'][group_id][str(i)][plugin_name] = 0
elif not _prefix_count_dict['week_statistics'][group_id]['0'].get(plugin_name):
if not _prefix_count_dict['week_statistics'][group_id].get('0'):
for i in range(7):
_prefix_count_dict['week_statistics'][group_id][str(i)] = {}
if not _prefix_count_dict['week_statistics'][group_id]['0'].get(plugin_name):
for i in range(7):
_prefix_count_dict['week_statistics'][group_id][str(i)][plugin_name] = 0
if not _prefix_count_dict['month_statistics'].get(group_id):
@ -110,7 +113,10 @@ def check_exists_key(group_id: str, plugin_name: str):
for i in range(30):
_prefix_count_dict['month_statistics'][group_id][str(i)] = {}
_prefix_count_dict['month_statistics'][group_id][str(i)][plugin_name] = 0
elif not _prefix_count_dict['month_statistics'][group_id]['0'].get(plugin_name):
if not _prefix_count_dict['month_statistics'][group_id].get('0'):
for i in range(30):
_prefix_count_dict['month_statistics'][group_id][str(i)] = {}
if not _prefix_count_dict['month_statistics'][group_id]['0'].get(plugin_name):
for i in range(30):
_prefix_count_dict['month_statistics'][group_id][str(i)][plugin_name] = 0