mirror of
https://github.com/lifegpc/eh-downloader.git
synced 2026-06-06 05:38:44 +08:00
Fix bug
This commit is contained in:
@@ -50,6 +50,9 @@ export const handler: Handlers = {
|
|||||||
const offset = await parse_big_int(data.get("offset"), null);
|
const offset = await parse_big_int(data.get("offset"), null);
|
||||||
const limit = await parse_big_int(data.get("limit"), null);
|
const limit = await parse_big_int(data.get("limit"), null);
|
||||||
const all_user = await parse_bool(data.get("all_user"), false);
|
const all_user = await parse_bool(data.get("all_user"), false);
|
||||||
|
if (all_user) {
|
||||||
|
uid = null;
|
||||||
|
}
|
||||||
const m = get_task_manager();
|
const m = get_task_manager();
|
||||||
if (user) {
|
if (user) {
|
||||||
if (!all_user && uid === null) uid = user.id;
|
if (!all_user && uid === null) uid = user.id;
|
||||||
|
|||||||
Reference in New Issue
Block a user