Skip to content

Commit

Permalink
Correct content-type (#261)
Browse files Browse the repository at this point in the history
  • Loading branch information
slinkydeveloper authored Mar 25, 2024
1 parent 0dadbd6 commit 62e45c1
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,11 @@ public T deserialize(byte[] value) {
throw new RuntimeException("Cannot create JsonGenerator", e);
}
}

@Override
public String contentType() {
return "application/json";
}
};
}
}

0 comments on commit 62e45c1

Please sign in to comment.