Commit 2a24666e authored by Mark Harding's avatar Mark Harding

(fix): do not throw error for missing entity, log in console

parent ec161448
No related merge requests found
Pipeline #77836378 running with stages
......@@ -153,7 +153,7 @@ export class EntitiesService {
if (!this.entities.has(urn)) {
this.entities.set(urn, new BehaviorSubject(null));
}
this.entities.get(urn).error("Not found");
console.warn(`Entity ${urn} not found`);
}
static _(client: Client, blockListService: BlockListService) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment