From 666666a8b6bbe64249b927850229c77d3f7f2896 Mon Sep 17 00:00:00 2001 From: Benoit Marty Date: Wed, 22 Oct 2025 18:24:20 +0200 Subject: [PATCH] Fix compilation issue --- .../libraries/push/impl/workmanager/FetchNotificationsWorker.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/push/impl/src/main/kotlin/io/element/android/libraries/push/impl/workmanager/FetchNotificationsWorker.kt b/libraries/push/impl/src/main/kotlin/io/element/android/libraries/push/impl/workmanager/FetchNotificationsWorker.kt index 4839bc193f..12c76e1e9b 100644 --- a/libraries/push/impl/src/main/kotlin/io/element/android/libraries/push/impl/workmanager/FetchNotificationsWorker.kt +++ b/libraries/push/impl/src/main/kotlin/io/element/android/libraries/push/impl/workmanager/FetchNotificationsWorker.kt @@ -125,5 +125,5 @@ class FetchNotificationsWorker( @ContributesIntoMap(AppScope::class, binding = binding>()) @WorkerKey(FetchNotificationsWorker::class) @AssistedFactory - abstract class Factory : MetroWorkerFactory.WorkerInstanceFactory + interface Factory : MetroWorkerFactory.WorkerInstanceFactory }