From bd019f319312eb167478c54e055522a0c2411a19 Mon Sep 17 00:00:00 2001 From: BuildTools Date: Tue, 27 Jun 2023 21:08:31 +0200 Subject: [PATCH] Fix Async --- .../java/tsp/headdb/core/api/events/AsyncHeadsFetchedEvent.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/tsp/headdb/core/api/events/AsyncHeadsFetchedEvent.java b/src/main/java/tsp/headdb/core/api/events/AsyncHeadsFetchedEvent.java index 2ed4e92..a0b5b12 100644 --- a/src/main/java/tsp/headdb/core/api/events/AsyncHeadsFetchedEvent.java +++ b/src/main/java/tsp/headdb/core/api/events/AsyncHeadsFetchedEvent.java @@ -11,6 +11,7 @@ public class AsyncHeadsFetchedEvent extends Event { private final long timeTook; public AsyncHeadsFetchedEvent(int headsCount, String providerName, long timeTook) { + super(true); this.headsCount = headsCount; this.providerName = providerName; this.timeTook = timeTook;