diff --git a/ts_web_inject/index.ts b/ts_web_inject/index.ts index cb94c6b..dba5151 100644 --- a/ts_web_inject/index.ts +++ b/ts_web_inject/index.ts @@ -303,8 +303,9 @@ export class ReloadChecker { // Helper function to log entries const logEntry = (entry: ITypedRequestLogEntry) => { - // Skip logging our own logging requests to avoid infinite loops - if (entry.method === 'serviceworker_typedRequestLog') { + // Skip logging serviceworker_* methods to avoid infinite loops + // These are internal SW communication methods, not app traffic + if (entry.method.startsWith('serviceworker_')) { return; } actionManager.logTypedRequest(entry);