From df57547d92999aa12fe26c952d3d38c4da71f3c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaakko=20Perttil=C3=A4?= Date: Mon, 22 Jun 2026 13:11:42 +0300 Subject: [PATCH] fix(split links): change selector from id to class Link splitter stopped working, as the selector for external-links-editor-container is now a class instead of an id. Tested on artist, release, recording pages and artist iframe. --- src/mb_multi_external_links/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mb_multi_external_links/index.ts b/src/mb_multi_external_links/index.ts index eb4eaac3..f74c5393 100644 --- a/src/mb_multi_external_links/index.ts +++ b/src/mb_multi_external_links/index.ts @@ -112,7 +112,7 @@ async function run(windowInstance: Window): Promise { // for its existence enables us to skip attempting to find the link input on // edit pages that don't have external links, without having to exclude // specific pages. - const editorContainer = qsMaybe('#external-links-editor-container', windowInstance.document); + const editorContainer = qsMaybe('.external-links-editor-container', windowInstance.document); if (!editorContainer) return; const editor = await ExternalLinksEditor.create(windowInstance);