Skip to content

Commit

Permalink
feat: skip two lines when signing
Browse files Browse the repository at this point in the history
  • Loading branch information
helllllllder committed Jul 24, 2023
1 parent 5248f59 commit 785a3cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chats/apps/msgs/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def serialized_ws_data(self) -> dict:

@property
def signed_text(self):
return f"{self.user.first_name}:\n{self.text}"
return f"{self.user.first_name}:\n\n{self.text}"

def get_authorization(self, user):
return self.room.get_authorization(user)
Expand Down

0 comments on commit 785a3cf

Please sign in to comment.