Fix initial update notification from repo

This commit is contained in:
Jon Staab
2024-06-06 16:23:13 -07:00
parent 53fe1b0a51
commit fc00208fe3
+2 -2
View File
@@ -40,8 +40,8 @@ export class Repository extends Emitter {
this.emit('update', {
added: events.filter(e => !this.isDeleted(e)),
removed: new Set(),
added: events,
removed: new Set(this.deletes.keys()),
})
}