Fix: minor

This commit is contained in:
eight 2018-10-13 15:03:10 +08:00
parent 43afa31fa0
commit d60db9dbef

View File

@ -44,16 +44,12 @@
icase = words.some(w => w === lower(w)); icase = words.some(w => w === lower(w));
} }
const results = []; return styleManager.getAllStyles().then(styles => {
return styleManager.getAllStyles()
.then(styles => {
if (ids) { if (ids) {
const idSet = new Set(ids); const idSet = new Set(ids);
return styles.filter(s => idSet.has(s.id)); styles = styles.filter(s => idSet.has(s.id));
} }
return styles; const results = [];
})
.then(styles => {
for (const style of styles) { for (const style of styles) {
const id = style.id; const id = style.id;
if (!query || words && !words.length) { if (!query || words && !words.length) {
@ -68,7 +64,6 @@
} }
} }
} }
if (cache.size) debounce(clearCache, 60e3); if (cache.size) debounce(clearCache, 60e3);
return results; return results;
}); });