Skip to content
This repository has been archived by the owner on Nov 27, 2023. It is now read-only.

Commit

Permalink
Fix canAppend in db_info
Browse files Browse the repository at this point in the history
  • Loading branch information
phillmac committed Aug 3, 2019
1 parent 751adc7 commit 8c0df37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/db-manager.js
Expand Up @@ -82,7 +82,7 @@ class DBManager {
path: db.options.path,
replicate: db.options.replicate,
},
canAppend: orbitdb.identity in __db_write,
canAppend: __db_write.includes(orbitdb.identity.id),
write: __db_write,
type: db.type,
uid: db.uid,
Expand Down

0 comments on commit 8c0df37

Please sign in to comment.