From 6542c01e380917c363a56c04c19fdf76ae124dc2 Mon Sep 17 00:00:00 2001 From: yumoqing Date: Wed, 13 Aug 2025 17:22:00 +0800 Subject: [PATCH] bugfix --- filemgr/filemgr.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/filemgr/filemgr.py b/filemgr/filemgr.py index 53cad62..d05bf07 100644 --- a/filemgr/filemgr.py +++ b/filemgr/filemgr.py @@ -179,7 +179,8 @@ union select unique a.* from folder a left join file c on a.id=c.folderid where a.id=${folderid}$ - and c.id is not null""" + and c.id is not null +""" recs = await sor.sqlExe(sql, {'folderid':folderid}) if recs: return True