修复配置缓存数据存储错误问题

This commit is contained in:
YeMingfei666 2024-12-30 21:46:29 +08:00
parent f01510c172
commit 34a175e3e6
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ class CACHE_config extends CACHE {
}
set(key, val) {
this[key] = val
uni.setStorageSync(key, this)
uni.setStorageSync(key, val)
uni.setStorageSync(this._name, this)
}
clear() {