Skip to content
This repository has been archived by the owner on May 20, 2020. It is now read-only.

Commit

Permalink
Bugfix multiple words in ShowtimeHTTP.search
Browse files Browse the repository at this point in the history
  • Loading branch information
claha committed Jan 14, 2015
1 parent c7a89bd commit bdcc423
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public void sendAction(String action) {
}

public void search(String text) {
String urlString = "http://" + ipAddress + ":" + port + "/showtime/open?url=search:" + text;
String urlString = "http://" + ipAddress + ":" + port + "/showtime/open?url=search:" + text.replace(" ", "+");
sendURL(urlString);
}

Expand Down

0 comments on commit bdcc423

Please sign in to comment.