防止字典重复请求,减少网络请求

This commit is contained in:
chf12mm 2022-01-12 03:06:20 +00:00 committed by Gitee
parent a6ef318fbb
commit 38162b611c
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -51,7 +51,7 @@ export default class Dict {
if (dictMeta === undefined) {
return Promise.reject(`the dict meta of ${type} was not found`)
}
return loadDict(this, dictMeta)
return removal(this, dictMeta)
}
}