Skip to content
This repository has been archived by the owner on Jun 23, 2023. It is now read-only.

Commit

Permalink
Don't hardcode linked app protocol to HTTP (#427)
Browse files Browse the repository at this point in the history

Co-authored-by: Luke Childs <lukechilds123@gmail.com>
  • Loading branch information
b-ryan and lukechilds authored Sep 17, 2022
1 parent 6ed87fe commit b6256fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/InstalledApp.vue
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ export default {
if (this.torOnly) {
return "#";
}
return `http://${window.location.hostname}:${this.app.port}${this.app.path}`;
return `${window.location.protocol}//${window.location.hostname}:${this.app.port}${this.app.path}`;
}
},
dependants: function() {
Expand Down

0 comments on commit b6256fb

Please sign in to comment.