Closed nolanlawson closed 7 years ago
I didn't realize any plugins were actually depending on these events. They weren't documented, so we removed them (https://github.com/pouchdb/pouchdb/issues/3739).
So unfortunately you're going to have to create a db.changes() listener instead of listening to db.on('change').
db.changes()
db.on('change')
Closing as fixed by https://github.com/redgeoff/delta-pouch/pull/52
I didn't realize any plugins were actually depending on these events. They weren't documented, so we removed them (https://github.com/pouchdb/pouchdb/issues/3739).
So unfortunately you're going to have to create a
db.changes()
listener instead of listening todb.on('change')
.