Skip to content

Commit ffb57dd

Browse files
committed
Minor fixes
1 parent e628796 commit ffb57dd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/entries/background-script.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const STATUS_ALLGOOD = Symbol('allgood')
1212

1313
browser.storage.local.get('notFirstRun')
1414
.then(d => {
15-
//if (d.notFirstRun) return
15+
if (d.notFirstRun) return
1616
browser.storage.local.set({notFirstRun: true})
1717
browser.storage.local.set({accounts: {}})
1818
browser.runtime.openOptionsPage()

src/lib/adapters/Nextcloud.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ export default class NextcloudAdapter {
8989
</div>
9090
}
9191

92-
setData(data) {
92+
setData (data) {
9393
this.server = data
9494
}
9595

0 commit comments

Comments
 (0)