Skip to content

Commit 24ae412

Browse files
committed
Fix
1 parent 6b320fd commit 24ae412

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

extension/src/background/logging.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,11 @@ export function getReport(
66
tabId: string | number,
77
instanceId: number,
88
) {
9-
chrome.storage.local.get(['s:hostname', 's:port', 's:secure'], (options) => {
9+
chrome.storage.local.get<{
10+
's:hostname': string | undefined;
11+
's:port': string | undefined;
12+
's:secure': string | undefined;
13+
}>(['s:hostname', 's:port', 's:secure'], (options) => {
1014
if (!options['s:hostname'] || !options['s:port']) return;
1115
const url = `${options['s:secure'] ? 'https' : 'http'}://${
1216
options['s:hostname']

0 commit comments

Comments
 (0)