This commit is contained in:
aozhiwei 2020-03-16 11:10:02 +08:00
parent 1d7840b984
commit 558d01eae5

View File

@ -115,7 +115,10 @@ class _App:
assert self._listened
def thread_func(args):
try:
func(args)
if len(args) > 0:
func(args)
else:
func()
except Exception as e:
f7.udplog.error('_dispatchIMMsg ' + str(e))
if done_callback: