From 7966bfb0562403214fa673f113fc1664ae30ee3e Mon Sep 17 00:00:00 2001 From: icedream Date: Tue, 27 Oct 2015 23:55:54 +0100 Subject: [PATCH] Playlist display (command "list"/"playlist") can generate too long messages, commenting out for now. --- app.iced | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app.iced b/app.iced index b8e8fb1..1a751ca 100644 --- a/app.iced +++ b/app.iced @@ -233,6 +233,7 @@ ts3clientService.on "started", (ts3proc) => when "empty", "clear" vlc.playlist.clear() ts3query.sendtextmessage args.targetmode, invoker.id, "Cleared the playlist." + ### when "list", "playlist" message = "Currently there are #{vlc.playlist.items.count} tracks are in the playlist" message += if vlc.playlist.items.count > 0 then ":\n" else "." @@ -244,6 +245,7 @@ ts3clientService.on "started", (ts3proc) => if vlc.playlist.currentItem == i message += "[/B][/COLOR]" ts3query.sendtextmessage args.targetmode, invoker.id, message + ### when "enqueue", "add", "append" inputBB = paramline.trim() input = (removeBB paramline).trim()