small fix for batch loaders

This commit is contained in:
hzrd149 2024-05-06 09:46:34 -05:00
parent 7894e85bf5
commit fc1fa763b5
3 changed files with 3 additions and 0 deletions

View File

@ -109,6 +109,7 @@ export default class BatchEventLoader {
}
destroy() {
this.subscription.destroy()
this.process.remove();
processManager.unregisterProcess(this.process);
}

View File

@ -142,6 +142,7 @@ export default class BatchKindLoader {
}
destroy() {
this.subscription.destroy();
this.process.remove();
processManager.unregisterProcess(this.process);
}

View File

@ -140,6 +140,7 @@ export default class BatchRelationLoader {
}
destroy() {
this.subscription.destroy();
this.process.remove();
processManager.unregisterProcess(this.process);
}