aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/utils/glyph_hash.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/glyph_hash.js b/src/utils/glyph_hash.js
index 120c02a..cbbf988 100644
--- a/src/utils/glyph_hash.js
+++ b/src/utils/glyph_hash.js
@@ -33,6 +33,6 @@ const getGlyphHashFragment = function (uuidFragment) {
// Return an array of glyphs based on a UUIDv4
export const getGlyphHash = function (uuid) {
- const hashFragments = uuid.match(internals.kSplitterRegex);
+ const hashFragments = uuid.replace(/[-]/g,'').match(internals.kSplitterRegex);
return hashFragments.map(getGlyphHashFragment);
};