pi-harness-runtime 1.1.7 → 1.1.9
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/index.ts +10 -0
- package/package.json +1 -1
package/index.ts
CHANGED
|
@@ -1391,6 +1391,16 @@ Run \`bd ready\` to see current tasks.
|
|
|
1391
1391
|
// so this is safe to call frequently.
|
|
1392
1392
|
setInterval(() => {
|
|
1393
1393
|
void maybeAutoFetchQuota(lastActiveProvider ?? null);
|
|
1394
|
+
// Also refresh footer status so user sees updated quota data
|
|
1395
|
+
if (footerStatusCtx) {
|
|
1396
|
+
refreshFooterStatus(
|
|
1397
|
+
footerStatusCtx,
|
|
1398
|
+
tracker,
|
|
1399
|
+
mirrorStore,
|
|
1400
|
+
hasCookieSource,
|
|
1401
|
+
() => lastActiveProvider,
|
|
1402
|
+
);
|
|
1403
|
+
}
|
|
1394
1404
|
}, MINIMAX_REFRESH_MIN_INTERVAL_MS);
|
|
1395
1405
|
|
|
1396
1406
|
function queueAutoResume(
|
package/package.json
CHANGED