Skip to content

Commit b02675c

Browse files
authored
[FIX]: open whitelisted webview content created in external browser (#636)
* chore(extension-helper): whitelist addresses before opening * chore: fix lint
1 parent b6a2c99 commit b02675c

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

src/backend/storeManagers/gog/library.ts

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { sendFrontendMessage } from '../../main_window'
2-
import axios, { AxiosError, AxiosRequestHeaders, AxiosResponse } from 'axios'
2+
import axios, { AxiosError, AxiosResponse } from 'axios'
33
import { GOGUser } from './user'
44
import {
55
GameInfo,
@@ -680,6 +680,7 @@ export async function gogToUnifiedInfo(
680680

681681
return object
682682
}
683+
683684
/**
684685
* Fetches data from gog about game
685686
* https://api.gog.com/v2/games
@@ -701,6 +702,7 @@ export async function getGamesData(appName: string, lang?: string) {
701702

702703
return response.data
703704
}
705+
704706
/**
705707
* Creates Array based on returned from API
706708
* If no recommended data is present it just stays empty
@@ -874,7 +876,7 @@ export async function getGamesdbData(
874876

875877
const response = await axios
876878
.get<GamesDBData>(url, { headers: headers })
877-
.catch((error: AxiosError) => {
879+
.catch((error: AxiosError<{ error_description: string }>) => {
878880
logError(
879881
[
880882
`Was not able to get GamesDB data for ${game_id}`,
@@ -922,9 +924,9 @@ export async function getProductApi(
922924
url.searchParams.set('expand', expand.join(','))
923925
}
924926

925-
const headers: AxiosRequestHeaders = {}
927+
const headers = {}
926928
if (access_token) {
927-
headers.Authorization = `Bearer ${access_token}`
929+
headers['Authorization'] = `Bearer ${access_token}`
928930
}
929931

930932
// `https://api.gog.com/products/${appName}?locale=${language}${expandString}`

0 commit comments

Comments
 (0)