From 1c5a0638ed2196993b21c4f63077e3afe26cb7b9 Mon Sep 17 00:00:00 2001 From: Ruakij Date: Mon, 22 Nov 2021 21:30:22 +0100 Subject: [PATCH] Calling packetHandler --- handler/textPacketHandler.hpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/handler/textPacketHandler.hpp b/handler/textPacketHandler.hpp index 50fc872..7459ab5 100644 --- a/handler/textPacketHandler.hpp +++ b/handler/textPacketHandler.hpp @@ -14,6 +14,7 @@ #include "../helper/find.hpp" #include "../helper/vector-stats.hpp" #include +#include "./packetHandler.hpp" using namespace std::string_literals; @@ -38,6 +39,8 @@ void textPacketHandler(const std::vector textPacket){ parseHeader(packet, textPacket); parsePayload(packet, textPacket); + + packetHandler(packet); }