Skip to content

Commit

Permalink
Update CallSender
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonas Karlsson committed Mar 24, 2022
1 parent 3a64651 commit b2efafe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repositories {
mavenCentral()
}

def runeLiteVersion = '1.8.14'
def runeLiteVersion = '1.8.15'

dependencies {
compileOnly group: 'net.runelite', name:'client', version: runeLiteVersion
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/starcallingassist/CallSender.java
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public boolean sendCall(String username, String world, String tier, String locat
.post(RequestBody.create(MediaType.parse("application/json"), GSON.toJson(data)))
.build();

return true;//okHttpClient.newCall(request).execute().isSuccessful();
return okHttpClient.newCall(request).execute().isSuccessful();
}

}

0 comments on commit b2efafe

Please sign in to comment.