Skip to content

Commit

Permalink
Hotfix: Visu liunk generation
Browse files Browse the repository at this point in the history
  • Loading branch information
biermapa authored and biermapa committed May 3, 2023
1 parent 5a42176 commit 52c9ad6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SmICSWebApp/Shared/NavMenu.razor
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@

string baseURL = navigation.BaseUri;
string[] splitted = baseURL.Split(':');
string http = splitted[0] + ":";
string url = splitted[1];
string http = splitted[0] + "://";
string url = splitted[1].Replace("/","");
string port = ":" + OpenehrConfig.smicsVisuPort;

visuLink = http + url + port;
Expand Down

0 comments on commit 52c9ad6

Please sign in to comment.