Oops i made async constructor

This commit is contained in:
MrMasrozYTLIVE 2024-06-14 19:50:10 +03:00
parent 6cbfe34966
commit 2d0f97bc8f

View File

@ -1,7 +1,7 @@
import Message from "./Message.js";
class IconMessage extends Message {
async constructor(peerName, avatarBuffer, topic, timestamp) {
constructor(peerName, avatarBuffer, topic, timestamp) {
super("icon", peerName, avatarBuffer, topic, timestamp);
}