From 252957629e78e53771a54e4e196dc80c5e851647 Mon Sep 17 00:00:00 2001
From: deurstann <tristan.derouet@gmail.com>
Date: Tue, 7 Sep 2021 14:00:58 +0200
Subject: [PATCH] fix delete kara in queue

---
 common/lkt.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/common/lkt.js b/common/lkt.js
index 5f58ad1..c7e1493 100644
--- a/common/lkt.js
+++ b/common/lkt.js
@@ -270,11 +270,11 @@ class LktClient {
     }
 
     static commandQueueDelPos(position) {
-        return LktClient.__execSimple(`delete ${position}`);
+        return LktClient.__execSimple(`del ${position}`);
     }
 
     static commandQueueDelId(id) {
-        return LktClient.__execSimple(`deleteid ${id}`);
+        return LktClient.__execSimple(`delid ${id}`);
     }
 
     static errorStatus(error) {
-- 
GitLab