From 276b53fd752793ee6784eaf9b2852821d0fcf250 Mon Sep 17 00:00:00 2001 From: Ernest1338 <45213563+Ernest1338@users.noreply.github.com> Date: Wed, 30 Dec 2020 21:48:52 +0100 Subject: [PATCH] Fix: Core plugin list doesn't work [#2542] (#2543) The command had been renamed more than 2 years ago. --- src/core/Cutter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/Cutter.cpp b/src/core/Cutter.cpp index 68fa9368..2a361968 100644 --- a/src/core/Cutter.cpp +++ b/src/core/Cutter.cpp @@ -2468,7 +2468,7 @@ QList CutterCore::getRCorePluginDescriptions() { QList ret; - QJsonArray plugins = cmdj("Lsj").array(); + QJsonArray plugins = cmdj("Lcj").array(); for (const QJsonValue &pluginValue : plugins) { QJsonObject pluginObject = pluginValue.toObject();