« get me outta code hell

fix automatic "." removal in flash names - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/upd8.js
diff options
context:
space:
mode:
author(quasar) nebula <towerofnix@gmail.com>2020-11-15 10:48:29 -0400
committer(quasar) nebula <towerofnix@gmail.com>2020-11-15 10:51:22 -0400
commitefb7a0ebdedf27b5fa7610d0d7bc38fb849f67ad (patch)
treefeacdfa7a508efbf9674680bcf2e0975be7858a1 /upd8.js
parent869515eafa0225a3e748b2165c324567a0d29132 (diff)
fix automatic "." removal in flash names
Diffstat (limited to 'upd8.js')
-rw-r--r--upd8.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/upd8.js b/upd8.js
index 2404a22..5c76db2 100644
--- a/upd8.js
+++ b/upd8.js
@@ -284,7 +284,7 @@ function transformInline(text) {
             const flash = getLinkedFlash(ref);
             if (flash) {
                 let name = flash.name;
-                const nextCharacter = text[offset + 1];
+                const nextCharacter = text[offset + match.length];
                 const lastCharacter = name[name.length - 1];
                 if (
                     ![' ', '\n', '<'].includes(nextCharacter) &&