Fix: reindent single then

This commit is contained in:
eight 2017-11-09 05:52:59 +08:00
parent 8d19e0b09a
commit 92b01e19e8
2 changed files with 13 additions and 15 deletions

View File

@ -50,8 +50,7 @@ var usercssHelper = (() => {
if (style.reason === 'config' && style.id) {
return style;
}
return findDup(style)
.then(dup => {
return findDup(style).then(dup => {
if (dup) {
style.id = dup.id;
if (style.reason !== 'config') {

View File

@ -16,8 +16,7 @@ function createSourceLoader() {
}
function load() {
return fetchText(location.href)
.then(newSource => {
return fetchText(location.href).then(newSource => {
source = newSource;
return source;
});