3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-07-11 04:57:19 +00:00

Tags: return an empty string for invalid inputs to mention()

This commit is contained in:
Dragory 2019-04-30 06:10:36 +03:00
parent 6fb93dac46
commit 3e95e5920a

View file

@ -92,7 +92,7 @@ export class TagsPlugin extends ZeppelinPlugin<ITagsPluginConfig> {
return `<#${input}>`; return `<#${input}>`;
} }
return input; return "";
}, },
}; };
} }