i hate js. it ignores all of my code and just sends 'messagetype' instead of 'type'

This commit is contained in:
MrMasrozYTLIVE
2024-06-14 19:25:17 +03:00
parent 14aa129f6d
commit 9b4357dd00
2 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
class Message {
constructor(messageType, peerName, peerAvatar, topic, timestamp) {
this.messageType = messageType;
this.type = messageType;
this.peerName = peerName;
this.peerAvatar = peerAvatar;
this.topic = topic;
@ -9,7 +9,7 @@ class Message {
toJson() {
return {
type: this.messageType,
type: this.type,
name: this.peerName,
avatar: this.peerAvatar,
topic: this.topic,