fix: unblock discord listener concurrency

This commit is contained in:
Peter Steinberger
2026-01-20 19:30:22 +00:00
parent 21370fc09b
commit b012b1105e
6 changed files with 101 additions and 16 deletions

View File

@@ -1,4 +1,4 @@
import { Editor, type EditorTheme, type TUI, Key, matchesKey } from "@mariozechner/pi-tui";
import { Editor, type EditorTheme, Key, matchesKey } from "@mariozechner/pi-tui";
export class CustomEditor extends Editor {
onEscape?: () => void;
@@ -12,8 +12,8 @@ export class CustomEditor extends Editor {
onShiftTab?: () => void;
onAltEnter?: () => void;
constructor(tui: TUI, theme: EditorTheme) {
super(tui, theme);
constructor(theme: EditorTheme) {
super(theme);
}
handleInput(data: string): void {
if (matchesKey(data, Key.alt("enter")) && this.onAltEnter) {