1
0
mirror of https://gitlab.com/comunic/comunicapiv2 synced 2024-11-22 05:19:22 +00:00

Fix issue with mobile version

This commit is contained in:
Pierre HUBERT 2020-04-26 14:11:17 +02:00
parent 0c93ae95b4
commit 40e9733955

View File

@ -120,7 +120,7 @@ export class ConversationsController {
// Update conversation name (if required)
if(h.hasPostParameter("name")) {
const name = h.postString("name");
const name = h.postString("name", 0);
await ConversationsHelper.SetName(convID, name == "false" ? "" : removeHTMLNodes(name));
}