mirror of
https://github.com/paul-nameless/tg
synced 2024-11-22 03:43:19 +00:00
Use space as separator for flags
This commit is contained in:
parent
b466724d05
commit
7889b0f3c3
1 changed files with 1 additions and 1 deletions
|
@ -285,7 +285,7 @@ class MsgView:
|
|||
|
||||
if not flags:
|
||||
return ""
|
||||
return ",".join(flags)
|
||||
return " ".join(flags)
|
||||
|
||||
def _format_reply_msg(self, chat_id: int, msg: str, reply_to: int) -> str:
|
||||
reply_msg = MsgProxy(self.msg_model.get_message(chat_id, reply_to))
|
||||
|
|
Loading…
Reference in a new issue