Skip to content

Commit ec53233

Browse files
authored
Merge pull request #41 from Global-Tags/development
fix: Bans are not appealable
2 parents 66ecf40 + e2dd0d6 commit ec53233

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.rappytv.globaltags</groupId>
88
<artifactId>GlobalTagsJava</artifactId>
9-
<version>1.2.5</version>
9+
<version>1.2.6</version>
1010

1111
<name>GlobalTagsJava</name>
1212
<description>A wrapper for the GlobalTagsAPI</description>

src/main/java/com/rappytv/globaltags/wrapper/http/Routes.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ public static String bans(UUID uuid) {
300300
* @return The HTTP route
301301
*/
302302
public static String appealBan(UUID uuid) {
303-
return "/players/" + uuid + "/ban/appeal";
303+
return bans(uuid) + "/appeal";
304304
}
305305

306306
/**

0 commit comments

Comments
 (0)