mirror of
https://git.mirrors.martin98.com/https://github.com/sub-store-org/Sub-Store.git
synced 2026-04-06 09:23:15 +08:00
Minor Bug fixed
This commit is contained in:
@@ -1692,12 +1692,12 @@ function Raw_Producer() {
|
||||
|
||||
/**************************** Operators ***************************************/
|
||||
// force to set some properties (e.g., scert, udp, tfo, etc.)
|
||||
function SetPropertyOperator(key, val) {
|
||||
function SetPropertyOperator({key, value}) {
|
||||
return {
|
||||
name: "Set Property Operator",
|
||||
func: (proxies) => {
|
||||
return proxies.map((p) => {
|
||||
p[key] = val;
|
||||
p[key] = value;
|
||||
return p;
|
||||
});
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user