neutral-face-emoji-tools
neutral-face-emoji-tools copied to clipboard
Fix space characters in emoji name
Problem
Space characters in the filename are passed to the Slack form in the name
field causing an error—Slack emoji names cannot contain whitespace.
Solution
Used replaceAll
to swap spaces for dashes. I chose dashes as opposed to underscores because slack emoji indexing works nicer with dashes.
Concerns
No potential issues arising from this change anticipated.
Future changes
- Currently working on adding some logic to append an incrementing
-#
to emoji-names ifname_taken
error occurs.