Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Не выводятся переносы строки из ВК в Матрикс #16

Open
MurzNN opened this issue Oct 22, 2019 · 2 comments
Labels
question Further information is requested

Comments

@MurzNN
Copy link

MurzNN commented Oct 22, 2019

Если в ВК-сообщении есть переносы строк, то они в Матриксе не появляются. Причина, видимо, в "format": "org.matrix.custom.html" т.к. в самом body переносы есть:

"content": {
  "body": "раз\nджва\nтри"
  "format": "org.matrix.custom.html",
  "msgtype": "m.text",
},

Если через Riot отправить сообщение, то там нет параметра "format" вообще, и переносы отображаются норм. Так что нужно или убирать "format" (но тогда потеряется возможность выделять жирным) или переносы строк делать html-тегами через <br /> и писать в formatted_body, пример:

  "content": {
    "msgtype": "m.text",
    "body": "<del>раз</del>\nт_р_и\n**пяд**ь",
    "format": "org.matrix.custom.html",
    "formatted_body": "<del>раз</del><br />т_р_и<br /><strong>пяд</strong>ь"
  },
@MurzNN
Copy link
Author

MurzNN commented Oct 23, 2019

Хм, а в RiotX-android переносы показываются норм :) В Riot-Web и Riot-Android - без переносов.

@progserega
Copy link
Owner

Хм. Проверил - вроде везде нормально сейчас показывается:
Исходная отправка из web-vk:
vk
android-riot:
Screenshot_20200614-232754
Riot-web:
riot-web

@progserega progserega added the question Further information is requested label Jun 14, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
question Further information is requested
Projects
None yet
Development

No branches or pull requests

2 participants