only emit loaded change on change

This commit is contained in:
balzack 2025-02-11 07:14:48 -08:00
parent 62cc78430d
commit 12a74fa454

View File

@ -143,6 +143,8 @@ export class ContentModule implements Content {
}
private emitLoaded() {
this.emitter.emit('loaded', this.streamLoaded && this.contactLoaded);
if (this.streamLoaded && this.contentLoaded) {
this.emitter.emit('loaded', true);
}
}
}