From 88ed6984f04cff0cefa1dfc64993a41e4a8ffff7 Mon Sep 17 00:00:00 2001 From: xszyou Date: Fri, 3 Feb 2023 19:27:55 +0800 Subject: [PATCH] 2022.02 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 1、集成live2d看板娘; 2、更新ngrok是否开启判断; --- fay_booter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fay_booter.py b/fay_booter.py index f861ee1..44ba353 100644 --- a/fay_booter.py +++ b/fay_booter.py @@ -99,7 +99,7 @@ def __init__(self, fei): def run(self): #启动ngork - if not config_util.key_ngrok_cc_id: + if config_util.key_ngrok_cc_id is not None and config_util.key_ngrok_cc_id != "": MyThread(target=self.start_ngrok, args=[config_util.key_ngrok_cc_id]).start() self.streamCache = stream_util.StreamCache(1024*1024*20)