Skip to content

Commit

Permalink
Fix 2fa failing
Browse files Browse the repository at this point in the history
  • Loading branch information
Jerrod Lankford committed Sep 12, 2021
1 parent c565297 commit 942b64e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "voice-desktop-app",
"version": "1.1.9",
"version": "1.2.0",
"description": "An electron shell wrapper for the google voice app",
"main": "src/main.js",
"build": {
Expand Down
4 changes: 2 additions & 2 deletions src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ function createWindow() {
win && win.loadURL(url);
}
else {
shell.openExternal(url);
shell.openExternal(url);
}
});

Expand All @@ -171,7 +171,7 @@ function createWindow() {
// Loads Google Voice in the main application window, identifying this application as Firefox running on
// a Mac. During the load, Google Voice itself takes care of asking the user to log in when necessary.
function loadGoogleVoiceInMainWindow() {
win && win.loadURL('https://voice.google.com', {userAgent: 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:82.0) Gecko/20100101 Firefox/82.0'});
win && win.loadURL('https://voice.google.com');
}

function updateNotifications(app) {
Expand Down

0 comments on commit 942b64e

Please sign in to comment.