Skip to content

Commit

Permalink
Fix httpSessionId name
Browse files Browse the repository at this point in the history
  • Loading branch information
Jyyjy committed Feb 29, 2024
1 parent c839132 commit 5537271
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/UserALEWebExtension/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,9 @@ function filterUrl(log) {
function injectSessions(log) {
let id = log.details.id;
if(id in tabToHttpSession) {
log.httpSession = tabToHttpSession[id];
log.httpSessionId = tabToHttpSession[id];
} else {
log.httpSession = null
log.httpSessionId = null
}
log.browserSessionId = browserSessionId;
return log;
Expand Down

0 comments on commit 5537271

Please sign in to comment.