This commit is contained in:
yumoqing 2025-09-14 14:22:33 +08:00
parent b89900e92e
commit 63d4ecb93e

View File

@ -2,7 +2,7 @@ if int(params_kw._is_mobile) == 1:
pagerows = 80
else:
pagerows = 260
page = int(params_kw.get(page, 1))
page = int(params_kw.get('page', 1))
dbname = get_module_dbname('llmage')
db = DBPools()
async with db.sqlorContext(dbname) as sor: