From 44211e7235eba4e248404149e8c43383307a46f4 Mon Sep 17 00:00:00 2001 From: Tixx <83774803+WiserTixx@users.noreply.github.com> Date: Sun, 2 Aug 2026 13:18:59 +0200 Subject: [PATCH] Fix incorrect string_view usage in log message and I somehow forgot the semicolon --- src/Network/GlobalHandler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Network/GlobalHandler.cpp b/src/Network/GlobalHandler.cpp index ec08ec3..2e2c8c2 100644 --- a/src/Network/GlobalHandler.cpp +++ b/src/Network/GlobalHandler.cpp @@ -63,7 +63,7 @@ bool CheckBytes(uint32_t Bytes) { void GameSend(std::string_view Data) { if (!GConnected) { - debug("Tried to call GameSend but socket was not connected. Data: " + Data) + debug("Tried to call GameSend but socket was not connected. Data: " + std::string(Data)); return; } static std::mutex Lock;