Skip to content

Commit

Permalink
Fix EBT
Browse files Browse the repository at this point in the history
  • Loading branch information
arj03 committed Aug 19, 2020
1 parent fa5c106 commit ac55d4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ssb-db.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ exports.init = function (sbot, config) {

sbot.getAtSequence = function (seqid, cb) {
// will NOT expose private plaintext
SSB.db.clockGet(isString(seqid) ? seqid.split(':') : seqid, function (err, value) {
SSB.db.getClock(isString(seqid) ? seqid.split(':') : seqid, function (err, value) {
if (err) cb(err)
else cb(null, originalData(value))
})
Expand Down

0 comments on commit ac55d4c

Please sign in to comment.