mirror of
https://git.mirrors.martin98.com/https://github.com/sub-store-org/Sub-Store.git
synced 2026-03-20 08:12:42 +08:00
fix: Backend crash when operator argument is undefined
This commit is contained in:
@@ -115,7 +115,7 @@ async function process(proxies, operators = [], targetPlatform) {
|
||||
$arguments,
|
||||
);
|
||||
} else {
|
||||
processor = PROXY_PROCESSORS[item.type](item.args);
|
||||
processor = PROXY_PROCESSORS[item.type](item.args || {});
|
||||
}
|
||||
proxies = await ApplyProcessor(processor, proxies);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user