Maybe this will fix everything

This commit is contained in:
GregTCLTK 2019-12-03 17:14:19 +01:00
parent c7cd9a4f26
commit 974b6c8307
No known key found for this signature in database
GPG key ID: A91BADE5C070FF67

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) {