Equicord Protocol

This commit is contained in:
thororen1234 2024-07-25 01:13:32 -04:00
parent 7518709310
commit 485452f65a
7 changed files with 32 additions and 7 deletions

View file

@ -271,7 +271,7 @@ function sendMsgNotif(titleString: string, content: string, message: Message) {
content: content,
useBase64Icon: true,
icon: result,
sourceApp: "Vencord"
sourceApp: "Equicord"
};
Native.sendToOverlay(msgData);
});
@ -290,7 +290,7 @@ function sendOtherNotif(content: string, titleString: string) {
content: content,
useBase64Icon: false,
icon: null,
sourceApp: "Vencord"
sourceApp: "Equicord"
};
Native.sendToOverlay(msgData);
}