ai-cc-router 0.3.1 → 0.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli/cmd-start.js +1 -1
- package/package.json +1 -1
package/dist/cli/cmd-start.js
CHANGED
|
@@ -183,7 +183,7 @@ async function ensureClaudeCodeConfigured(prefs, cfg) {
|
|
|
183
183
|
async function maybeUpdate() {
|
|
184
184
|
let check;
|
|
185
185
|
try {
|
|
186
|
-
check = await checkForUpdate();
|
|
186
|
+
check = await checkForUpdate(true); // force fresh check, skip disk cache
|
|
187
187
|
if (!check.updateAvailable)
|
|
188
188
|
return;
|
|
189
189
|
}
|