bugfix
This commit is contained in:
parent
4b278d49b6
commit
680a7c4e6c
@ -173,8 +173,13 @@ class FileMgr:
|
|||||||
async def has_sub(self, sor, folderid):
|
async def has_sub(self, sor, folderid):
|
||||||
sql = """select unique a.* from folder a
|
sql = """select unique a.* from folder a
|
||||||
left join folder b on a.id = b.parentid
|
left join folder b on a.id = b.parentid
|
||||||
|
where a.id=${folderid}$
|
||||||
|
and b.id is not null
|
||||||
|
union
|
||||||
|
select unique a.* from folder a
|
||||||
left join file c on a.id=c.folderid
|
left join file c on a.id=c.folderid
|
||||||
where id=${folderid}$"""
|
where a.id=${folderid}$
|
||||||
|
and b.id is not null"""
|
||||||
recs = await sor.sqlExe(sql, {'folderid':folderid})
|
recs = await sor.sqlExe(sql, {'folderid':folderid})
|
||||||
if recs:
|
if recs:
|
||||||
return True
|
return True
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user