diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-01-21 22:49:54 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-21 22:49:54 -0500 |
commit | cf57c4e38d619d979ca39328bd9ec4821f284816 (patch) | |
tree | 0bd80612cc5200218f76ae51ab4025c33a7c26a6 /ext/mixed/js/audio-system.js | |
parent | 0bc5a4a971126adca1787d90db36b13716638290 (diff) |
Simplify CacheMap (#1287)
* Simplify CacheMap, removing support for array path keys
* Update keys
* Update JsonSchemaValidator
* Update AudioSystem
Diffstat (limited to 'ext/mixed/js/audio-system.js')
-rw-r--r-- | ext/mixed/js/audio-system.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mixed/js/audio-system.js b/ext/mixed/js/audio-system.js index f42fd657..584da2b1 100644 --- a/ext/mixed/js/audio-system.js +++ b/ext/mixed/js/audio-system.js @@ -37,7 +37,7 @@ class AudioSystem { } async createExpressionAudio(sources, expression, reading, details) { - const key = [expression, reading]; + const key = JSON.stringify([expression, reading]); const cacheValue = this._cache.get(key); if (typeof cacheValue !== 'undefined') { |