Skip to content

Commit

Permalink
Add slash to api path
Browse files Browse the repository at this point in the history
  • Loading branch information
mglusiuk authored and dpolanowski committed Jan 14, 2021
1 parent b81653c commit 2235b56
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -541,15 +541,15 @@ private String composeWsUrl(String inUrl) {

switch (type) {
case Event:
sb.append("events-ws/" + EVENT_API_VERSION);
sb.append("events-ws/" + EVENT_API_VERSION + "/");
break;

case Graph:
sb.append("graph-ws/" + GRAPH_API_VERSION);
sb.append("graph-ws/" + GRAPH_API_VERSION + "/");
break;

case Action:
sb.append("action-ws/" + ACTION_API_VERSION);
sb.append("action-ws/" + ACTION_API_VERSION + "/");
break;

default:
Expand Down

0 comments on commit 2235b56

Please sign in to comment.