This commit is contained in:
Vanessa 2023-06-02 21:49:22 +08:00
parent 16216796b6
commit 17fc039ad5
5 changed files with 111 additions and 2 deletions

View file

@ -302,7 +302,7 @@ export const bazaar = {
app.plugins.find((item: Plugin) => {
if (item.name === dataObj.name) {
// @ts-ignore
hasSetting = item.__proto__.hasOwnProperty("openSetting");
hasSetting = item.setting || item.__proto__.hasOwnProperty("openSetting");
return true;
}
});