Fix: doo many indents

This commit is contained in:
eight 2018-10-14 00:56:04 +08:00
parent 14e321d258
commit fc53bed3de

View File

@ -153,10 +153,8 @@
function maybeUpdateUsercss() {
// TODO: when sourceCode is > 100kB use http range request(s) for version check
return download(style.updateUrl)
.then(text =>
usercss.buildMeta(text)
.then(json => {
return download(style.updateUrl).then(text =>
usercss.buildMeta(text).then(json => {
const {usercssData: {version}} = style;
const {usercssData: {version: newVersion}} = json;
switch (Math.sign(semverCompare(version, newVersion))) {