Skip to content

Commit

Permalink
fix: fix tests, fix token moderation
Browse files Browse the repository at this point in the history
  • Loading branch information
itsmeadi committed Nov 4, 2024
1 parent f4f6596 commit 647a119
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/main/java/io/getstream/core/Moderation.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,7 @@ public CompletableFuture<Response> flag(
public final String reason = Reason;
});

String strsing = new String(payload);
System.out.println(strsing);
final URL url = buildModerationFlagURL(baseURL);
final URL url = buildModerationFlagURL(baseURL);
return httpClient.execute(buildPost(url, key, token, payload));
} catch (JsonProcessingException | MalformedURLException | URISyntaxException e) {
throw new CompletionException(e);
Expand Down

0 comments on commit 647a119

Please sign in to comment.