mirror of https://github.com/Mai-with-u/MaiBot.git
Merge branch 'debug' into debug
commit
e56796be81
|
|
@ -362,6 +362,7 @@ class EmojiManager:
|
||||||
logger.warning(f"发现缺失记录(缺少hash字段),ID: {emoji.get('_id', 'unknown')}")
|
logger.warning(f"发现缺失记录(缺少hash字段),ID: {emoji.get('_id', 'unknown')}")
|
||||||
hash = hashlib.md5(open(emoji["path"], "rb").read()).hexdigest()
|
hash = hashlib.md5(open(emoji["path"], "rb").read()).hexdigest()
|
||||||
db.emoji.update_one({"_id": emoji["_id"]}, {"$set": {"hash": hash}})
|
db.emoji.update_one({"_id": emoji["_id"]}, {"$set": {"hash": hash}})
|
||||||
|
|
||||||
except Exception as item_error:
|
except Exception as item_error:
|
||||||
logger.error(f"处理表情包记录时出错: {str(item_error)}")
|
logger.error(f"处理表情包记录时出错: {str(item_error)}")
|
||||||
continue
|
continue
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue