This commit is contained in:
yumoqing 2025-08-14 14:24:15 +08:00
parent 9dce2f60fc
commit eb19381f0e

View File

@ -1,6 +1,7 @@
async def g(): async def g():
u = await get_session_userinfo(request)
uapi = UAPI(request, DictObject(**globals())) uapi = UAPI(request, DictObject(**globals()))
async for c in uapi('kyrag', 'jump-in', user): async for c in uapi('kyrag', 'jump-in', u.userid):
yield c yield c
return await stream_response(request, g) return await stream_response(request, g)