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

Commit

Permalink
made important change
Browse files Browse the repository at this point in the history
  • Loading branch information
FultonBrowne committed Oct 12, 2019
1 parent 5b4f2a3 commit d5413f7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Binary file modified bin/jar/Ara-Server.jar
Binary file not shown.
5 changes: 3 additions & 2 deletions src/main/java/com/andromeda/araserver/pages/ApiStart.java
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,9 @@ private String ParseApi(String search) {
}
}
// parse to avoid errors
if (linkval != null && linkval.contains(" "))
linkval = linkval.replace(" ", "");
if (linkval != null && linkval.contains(" "));
else linkval = "https://araserver.herokuapp.com/search" + search;
linkval = linkval.replace(" ", "");
System.out.println(linkval);
String url = linkval;
URL obj;
Expand Down

0 comments on commit d5413f7

Please sign in to comment.