mirror of
https://git.mirrors.martin98.com/https://github.com/sub-store-org/Sub-Store.git
synced 2026-05-04 16:18:05 +08:00
Minor Bug fixed
This commit is contained in:
5
backend/.idea/workspace.xml
generated
5
backend/.idea/workspace.xml
generated
@@ -20,11 +20,7 @@
|
||||
</component>
|
||||
<component name="ChangeListManager">
|
||||
<list default="true" id="8b97a098-48b2-4e64-a9ef-522fe2d30b52" name="Default Changelist" comment="">
|
||||
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/sub-store.js" beforeDir="false" afterPath="$PROJECT_DIR$/sub-store.js" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/../web/src/components/ProxyList.vue" beforeDir="false" afterPath="$PROJECT_DIR$/../web/src/components/ProxyList.vue" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/../web/src/config.js" beforeDir="false" afterPath="$PROJECT_DIR$/../web/src/config.js" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/../web/src/views/Subscription.vue" beforeDir="false" afterPath="$PROJECT_DIR$/../web/src/views/Subscription.vue" afterDir="false" />
|
||||
</list>
|
||||
<option name="SHOW_DIALOG" value="false" />
|
||||
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
||||
@@ -95,6 +91,7 @@
|
||||
<workItem from="1598931009084" duration="2069000" />
|
||||
<workItem from="1598946261983" duration="463000" />
|
||||
<workItem from="1598948545209" duration="3969000" />
|
||||
<workItem from="1598962864003" duration="97000" />
|
||||
</task>
|
||||
<servers />
|
||||
</component>
|
||||
|
||||
@@ -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