msg => message

This commit is contained in:
folex
2019-08-16 19:47:38 +03:00
parent 0fafa8661b
commit 8ca166aaf8
16 changed files with 64 additions and 68 deletions

View File

@ -11,7 +11,7 @@ export function handler(input: string): string {
if (request.action == Action.Post) {
let post = request as PostRequest;
addMessage(post.msg, post.username);
addMessage(post.message, post.username);
let count = getPostsCount();
let response = new PostResponse(count);