Fix not allowing you to type ' in live chats

This commit is contained in:
Ajay
2024-09-27 02:06:08 -04:00
parent a2f4f34dfe
commit bec183d595

View File

@@ -2524,7 +2524,8 @@ function addHotkeyListener(): void {
function hotkeyListener(e: KeyboardEvent): void {
if (["textarea", "input"].includes(document.activeElement?.tagName?.toLowerCase())
|| document.activeElement?.id?.toLowerCase()?.includes("editable")) return;
|| document.activeElement?.["contentEditable"]
|| document.activeElement?.id?.toLowerCase()?.match(/editable|input/)) return;
const key: Keybind = {
key: e.key,