Fix: use findStyle API

This commit is contained in:
eight 2018-10-14 02:36:20 +08:00
parent 93a4cdf595
commit 838c21e3b3
2 changed files with 4 additions and 4 deletions

View File

@ -118,10 +118,10 @@ const styleManager = (() => {
}
// used by install-hook-userstyles.js
function findStyle(filter) {
function findStyle(filter, noCode = false) {
for (const style of styles.values()) {
if (filterMatch(filter, style.data)) {
return style.data;
return noCode ? getStyleWithNoCode(style.data) : style.data;
}
}
return null;

View File

@ -145,9 +145,9 @@
function onUpdate() {
return new Promise((resolve, reject) => {
API.getStylesInfo({
API.findStyle({
md5Url: getMeta('stylish-md5-url') || location.href
}).then(([style]) => {
}, true).then(style => {
saveStyleCode('styleUpdate', style.name, {id: style.id})
.then(resolve, reject);
});