From 6c0878eeac4b7e12ed0581898f4f826fa8c19715 Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Sun, 7 Mar 2021 21:03:52 +0100 Subject: [PATCH] Remove duplicate command impl --- commands.js | 7 ------- 1 file changed, 7 deletions(-) diff --git a/commands.js b/commands.js index ae4a396..54d3b2b 100644 --- a/commands.js +++ b/commands.js @@ -9,13 +9,6 @@ function getActiveClient(app) { } export default { - "query": (app, args) => { - var nick = args[0]; - if (!nick) { - throw new Error("Missing nickname"); - } - app.open(nick); - }, "quit": (app, args) => { if (window.localStorage) { localStorage.removeItem("autoconnect");