From b9bba895e1400d77354141f692b2990d315f9fe4 Mon Sep 17 00:00:00 2001 From: xream Date: Sun, 29 Dec 2024 23:37:07 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=94=AF=E6=8C=81=E8=AE=A2=E9=98=85?= =?UTF-8?q?=E7=BA=A7=E5=88=AB=E7=9A=84=20`noCache`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/package.json | 2 +- backend/src/restful/sync.js | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) 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) {