Skip to content

Commit

Permalink
Correct content-type
Browse files Browse the repository at this point in the history
  • Loading branch information
slinkydeveloper committed Mar 25, 2024
1 parent 0dadbd6 commit c0d10bf
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 c0d10bf

Please sign in to comment.