Skip to content

Commit c6abab6

Browse files
author
Ray Schamp
committed
fix: heed cache->store API change in BuiltinHelper
This was kind of an own goal. If it's deprecated the module itself shouldn't use it!
1 parent 63f2d90 commit c6abab6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/BuiltinHelper.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ class BuiltinHelper extends Helper {
6363
this.assets = {};
6464

6565
BuiltinAssets.forEach(assetRecord => {
66-
assetRecord.id = this.cache(assetRecord.type, assetRecord.format, assetRecord.data, assetRecord.id);
66+
assetRecord.id = this.store(assetRecord.type, assetRecord.format, assetRecord.data, assetRecord.id);
6767
});
6868
}
6969

0 commit comments

Comments
 (0)