diff --git a/backend/package.json b/backend/package.json index a57f46c..d864c92 100644 --- a/backend/package.json +++ b/backend/package.json @@ -1,6 +1,6 @@ { "name": "sub-store", - "version": "2.15.10", + "version": "2.15.11", "description": "Advanced Subscription Manager for QX, Loon, Surge, Stash and ShadowRocket.", "main": "src/main.js", "scripts": { diff --git a/backend/src/restful/sync.js b/backend/src/restful/sync.js index 1f2f433..ea09b12 100644 --- a/backend/src/restful/sync.js +++ b/backend/src/restful/sync.js @@ -73,7 +73,7 @@ async function produceArtifact({ proxy || sub.proxy, undefined, awaitCustomCache, - noCache, + noCache || sub.noCache, true, ); } catch (err) { @@ -122,7 +122,7 @@ async function produceArtifact({ proxy || sub.proxy, undefined, awaitCustomCache, - noCache, + noCache || sub.noCache, true, ); } catch (err) { @@ -244,7 +244,7 @@ async function produceArtifact({ collection.proxy, undefined, undefined, - noCache, + noCache || sub.noCache, true, ); } catch (err) {