SHOW_RESEND_BUTTONの条件を修正し、main_instanceの起動処理を簡素化

This commit is contained in:
misyaguziya
2025-09-25 17:27:08 +09:00
parent 361c7ca49a
commit 9e2c91905c
2 changed files with 2 additions and 214 deletions

View File

@@ -1003,7 +1003,7 @@ class Controller:
@staticmethod
def setEnableShowResendButton(*args, **kwargs) -> dict:
if not config.SHOW_RESEND_BUTTON:
if config.SHOW_RESEND_BUTTON is False:
config.SHOW_RESEND_BUTTON = True
return {"status":200, "result":config.SHOW_RESEND_BUTTON}