From 14815acb05cd6faed81ace065789e175957c67db Mon Sep 17 00:00:00 2001 From: Cristian Recoseanu Date: Thu, 20 Jul 2023 16:52:18 +0100 Subject: [PATCH] Update Notifications.ts To remove the protocol version --- code/src/NCProtocol/Notifications.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/src/NCProtocol/Notifications.ts b/code/src/NCProtocol/Notifications.ts index d20f648..58037e0 100644 --- a/code/src/NCProtocol/Notifications.ts +++ b/code/src/NCProtocol/Notifications.ts @@ -68,7 +68,7 @@ export class ProtocolNotification extends ProtocolWrapper public constructor( notifications: NcNotification[]) { - super('1.0.0', MessageType.Notification); + super(MessageType.Notification); this.notifications = notifications; }