Skip to content
This repository was archived by the owner on Feb 19, 2025. It is now read-only.

Commit 5537271

Browse files
committed
Fix httpSessionId name
1 parent c839132 commit 5537271

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/UserALEWebExtension/background.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,9 @@ function filterUrl(log) {
8787
function injectSessions(log) {
8888
let id = log.details.id;
8989
if(id in tabToHttpSession) {
90-
log.httpSession = tabToHttpSession[id];
90+
log.httpSessionId = tabToHttpSession[id];
9191
} else {
92-
log.httpSession = null
92+
log.httpSessionId = null
9393
}
9494
log.browserSessionId = browserSessionId;
9595
return log;

0 commit comments

Comments
 (0)