Remove duplicate command impl

This commit is contained in:
Simon Ser 2021-03-07 21:03:52 +01:00
parent 6430fa252a
commit 6c0878eeac

View file

@ -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");