Skip to content

Commit

Permalink
Fix chat message serialization
Browse files Browse the repository at this point in the history
  • Loading branch information
zapek committed Dec 12, 2024
1 parent 0b02548 commit 9ae2891
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
public class ChatMessage
{
private String content;
private boolean isOwn;
private boolean own;

public ChatMessage()
{
Expand All @@ -52,12 +52,12 @@ public void setContent(String content)

public boolean isOwn()
{
return isOwn;
return own;
}

public void setOwn(boolean own)
{
isOwn = own;
this.own = own;
}

@JsonIgnore
Expand Down

0 comments on commit 9ae2891

Please sign in to comment.