Maybe this will fix everything #146

Merged
greg6775 merged 1 commit from greg-dev into master 2019-12-03 17:15:00 +01:00
Showing only changes of commit 974b6c8307 - Show all commits

View file

@ -166,11 +166,11 @@ public class Rethink {
}
public String getRulesAEmote(String guild_id) {
return (String) this.get("server", "id", guild_id, "accept_emote");
return this.get("server", "id", guild_id, "accept_emote").toString().replaceAll("\"", "");
}
public String getRulesDEmote(String guild_id) {
return (String) this.get("server", "id", guild_id, "decline_emote");
return this.get("server", "id", guild_id, "decline_emote").toString().replaceAll("\"", "");
}
public void setInviteDetection(String guild_id, boolean b) {