From d264fbd36a7085ac8078d120a88acf1b8cae9289 Mon Sep 17 00:00:00 2001 From: vaxerski Date: Thu, 6 Oct 2022 09:04:46 +0100 Subject: [PATCH] fix string corruption in hyprctl monitors -j --- src/debug/HyprCtl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/debug/HyprCtl.cpp b/src/debug/HyprCtl.cpp index 0ebe9e1a..c602ab31 100644 --- a/src/debug/HyprCtl.cpp +++ b/src/debug/HyprCtl.cpp @@ -41,7 +41,7 @@ R"#({ },)#", m->ID, escapeJSONStrings(m->szName).c_str(), - escapeJSONStrings(m->output->description ? m->output->description : ""), + escapeJSONStrings(m->output->description ? m->output->description : "").c_str(), (int)m->vecPixelSize.x, (int)m->vecPixelSize.y, m->refreshRate, (int)m->vecPosition.x, (int)m->vecPosition.y,