aboutsummaryrefslogtreecommitdiffstats
path: root/src/index.ts
diff options
context:
space:
mode:
authorLibravatar Markus Hatvan <markus_hatvan@aon.at>2021-10-14 23:32:05 +0200
committerLibravatar GitHub <noreply@github.com>2021-10-15 03:02:05 +0530
commit137555821f172e4eadc7cf099d4270ae8fc1374e (patch)
tree693882bbf7a6b2a24b5a727091d09586d0371007 /src/index.ts
parentNew translations en-US.json (Spanish) (#2072) (diff)
downloadferdium-app-137555821f172e4eadc7cf099d4270ae8fc1374e.tar.gz
ferdium-app-137555821f172e4eadc7cf099d4270ae8fc1374e.tar.zst
ferdium-app-137555821f172e4eadc7cf099d4270ae8fc1374e.zip
chore: convert components to tsx (#2071)
Diffstat (limited to 'src/index.ts')
-rw-r--r--src/index.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/index.ts b/src/index.ts
index 248c6d110..b4a754289 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -499,7 +499,7 @@ app.on('login', (event, _webContents, _request, authInfo, callback) => {
499 499
500 if (!authInfo.isProxy && authInfo.scheme === 'basic') { 500 if (!authInfo.isProxy && authInfo.scheme === 'basic') {
501 debug('basic auth handler', authInfo); 501 debug('basic auth handler', authInfo);
502 basicAuthHandler(mainWindow, authInfo); 502 basicAuthHandler(mainWindow!, authInfo);
503 } 503 }
504}); 504});
505 505