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

Fix bad check

This commit is contained in:
Pierre HUBERT 2020-04-02 11:07:43 +02:00
parent 969c644aad
commit 1502906c09

View File

@ -167,7 +167,7 @@ export class UserWebSocketActions {
UserWebSocketController.SendToClient(client, new WsMessage({ UserWebSocketController.SendToClient(client, new WsMessage({
id: "", id: "",
title: "comment_updated", title: "comment_updated",
data: await CommentsController.CommentToAPI(new AbritraryUserConnection(client.userID), comment, true) data: await CommentsController.CommentToAPI(new AbritraryUserConnection(client.userID), comment)
})) }))
} }
} }