From c3e81625dabbeb15cf89619a753b7f6654216526 Mon Sep 17 00:00:00 2001 From: Alexander Shevtsov Date: Sat, 30 Aug 2025 00:10:08 +0300 Subject: [PATCH] added single-lettered space tag --- utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils.ts b/utils.ts index 340ae4c..8d8f5e3 100644 --- a/utils.ts +++ b/utils.ts @@ -92,7 +92,7 @@ export function computeTarget(evt: CompactEvent) : TargetInfo { for (const tag of evt.tags) { if (tag.length < 2) continue; - if (!space && anchored && tag[0] === 'space') { + if (!space && anchored && (tag[0] === 's' || tag[0] === 'space')) { space = tag[1]; continue; }