fix 通知消息不会多渠道发送问题

This commit is contained in:
jxxghp 2023-08-22 11:39:03 +08:00
parent 14c0063e7c
commit afe5ee9abb

View File

@ -98,7 +98,7 @@ class ChainBase(metaclass=ABCMeta):
result.extend(temp) result.extend(temp)
else: else:
# 返回结果非列表也非空,则继续执行下一模块 # 返回结果非列表也非空,则继续执行下一模块
continue result = func(*args, **kwargs)
except Exception as err: except Exception as err:
logger.error(f"运行模块 {method} 出错:{module.__class__.__name__} - {err}\n{traceback.print_exc()}") logger.error(f"运行模块 {method} 出错:{module.__class__.__name__} - {err}\n{traceback.print_exc()}")
return result return result