Browse Source

🐞 fix: 提升2公里日最短跑步距离

Pchen. 1 month ago
parent
commit
e2615aea64
1 changed files with 1 additions and 1 deletions
  1. 1 1
      plugin/jkes/monthPolicy.js

+ 1 - 1
plugin/jkes/monthPolicy.js

@@ -177,7 +177,7 @@ async function planJkesAutoRun(account, autoDayRaw, token, options = {}, d = new
     const mustDoubleToday = doubleRemaining > 0 && doubleRemaining >= remainingDays
     const plannedDoubleToday = isDoubleKmDom(y, m, autoDays, dom)
     if (mustDoubleToday || plannedDoubleToday) {
-        targetKm = Math.max(targetKm, 2)
+        targetKm = Math.max(targetKm, 2.5)
     }
     targetKm = Math.min(maxAutoSingleKm, Math.max(1, Math.round(targetKm * 100) / 100))
     return { run: true, targetKm, monthTargetKm }