Skip to content

Commit

Permalink
include port in desktop app check
Browse files Browse the repository at this point in the history
  • Loading branch information
nickpatrick committed Jul 31, 2023
1 parent 4023135 commit 1948246
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/http.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ class Http {
}

xhr.onerror = function() {
if (host && host.includes('localhost')) {
if (host && host.includes('localhost:52516')) {
reject(new RadarDesktopAppError());
} else {
reject(new RadarServerError());
Expand Down

0 comments on commit 1948246

Please sign in to comment.