Skip to content

Commit

Permalink
fix: unintended sendResponse removed (#120)
Browse files Browse the repository at this point in the history
  • Loading branch information
Codetrauma authored Dec 5, 2024
1 parent b8d068b commit ca382f3
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/entries/Background/rpc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,6 @@ export enum BackgroundActiontype {
get_logging_level = 'get_logging_level',
get_app_state = 'get_app_state',
set_default_plugins_installed = 'set_default_plugins_installed',

set_local_storage = 'set_local_storage',
get_local_storage = 'get_local_storage',
set_session_storage = 'set_session_storage',
Expand Down Expand Up @@ -739,8 +738,6 @@ async function handleSetSessionStorage(
for (const [key, value] of Object.entries(data)) {
await setSessionStorage(hostname, key, value as string);
}

sendResponse({ type: BackgroundActiontype.sessionStorage_set });
}
}

Expand Down

0 comments on commit ca382f3

Please sign in to comment.