From 74dc78a20bd50085cf99428701e7be64e406e6b1 Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Thu, 27 May 2021 21:46:56 +0200 Subject: [PATCH] Fix lib/irc.js import path in commands.js --- commands.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands.js b/commands.js index c1498b1..cf75d7c 100644 --- a/commands.js +++ b/commands.js @@ -1,4 +1,4 @@ -import * as irc from "../lib/irc.js"; +import * as irc from "./lib/irc.js"; import { SERVER_BUFFER, BufferType } from "./state.js"; function getActiveClient(app) {