Skip to content

Commit

Permalink
refac(service): Fixed a config file issue (#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
Seb committed Apr 20, 2022
1 parent 8af09d5 commit 8dd34fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/de/voidtech/gerald/service/GeraldConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public String getMemeApiURL() {
}

public String getExperienceCardApiURL() {
String url = config.getProperty("api.gavin_url");
String url = config.getProperty("api.xp_url");
return url != null ? url : "http://localhost:3000/api/";
}
}

0 comments on commit 8dd34fb

Please sign in to comment.