Skip to content

Commit

Permalink
Browsers: Fix issue where user name was properly incorporated into cr…
Browse files Browse the repository at this point in the history
…eated string (reference #81)
  • Loading branch information
piotrzarzycki21 committed Aug 15, 2023
1 parent bd7213e commit e504912
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/superhuman/browser/BrowserData.hx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ class BrowserData {
this.executablePath = "/Applications/Opera.app";
#elseif windows
var userName = SysTools.getWindowsUserName();
this.executablePath = "C:/Users/${userName}/AppData/Local/Programs/Opera/launcher.exe";
this.executablePath = 'C:/Users/${userName}/AppData/Local/Programs/Opera/launcher.exe';
#end
}

Expand Down

0 comments on commit e504912

Please sign in to comment.