fix nextchapter function empty

This commit is contained in:
CakeCN
2025-09-11 21:44:40 +08:00
parent 15de417b5c
commit 6bd8b30513

View File

@@ -0,0 +1,7 @@
from flask import current_app
def next_chapter(user_uuid):
ex = current_app.extensions
user_uuid2chatmanager = ex["user_uuid2chatmanager"]
user_uuid2chatmanager[user_uuid].next_chapter()
return "成功进入下一章"