X-Git-Url: https://git.r.bdr.sh/rbdr/forum/blobdiff_plain/6347b8d9ab40c5807226eaece1945266292d0893..c64352ff6be4d9c05df37f02212e2e409435fc31:/src/utils/glyph_hash.js 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); };