Skip to content

Commit 74331e1

Browse files
committed
Merge branch 'develop'
2 parents d1c68de + 08a1a21 commit 74331e1

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## v2.0.4
2+
- FIX: getAllAccounts didn't have a fallback for the initial loading of the extension
3+
14
## v2.0.3
25
- FIX: Display error messages of multiple errors
36
- FIX: Add resource locking to fix race conditions and allow more concurrency (should fix remaining issues related to creation of duplicates)

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 2,
33
"name": "Floccus (nextcloud Sync)",
44
"short_name": "Floccus",
5-
"version": "2.0.3",
5+
"version": "2.0.4",
66
"description": "Sync your browser with nextcloud (currently only bookmarks; more to come)",
77
"icons": {
88
"48": "icons/logo.png"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "floccus",
3-
"version": "2.0.3",
3+
"version": "2.0.4",
44
"description": "The goal of this project is to build a browser extension that syncs your browser data with [OwnCloud](http://owncloud.org).",
55
"main": "index.js",
66
"scripts": {

src/lib/Account.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ export default class Account {
258258
}
259259

260260
static async getAllAccounts () {
261-
const d = await browser.storage.local.get('accounts')
261+
const d = await browser.storage.local.get({'accounts': {}})
262262
var accounts = d['accounts']
263263

264264
accounts = await Promise.all(

0 commit comments

Comments
 (0)