summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorTheScarastic <warabhishek@e.email>2022-06-06 13:46:29 +0530
committerTheScarastic <warabhishek@e.email>2022-06-06 13:46:29 +0530
commit54f9e2181097e8a14112b19b2b9d578a4c4fffa8 (patch)
tree443c11500b21e3df64aa379c1979520dbf0d7f84 /app
parenta2ec079c983e80613953261b02257710baa477b5 (diff)
Revert "Revert "privacycentralapp: use io dispatcher for actors""
* fc has been fixed in privacymodulee This reverts commit ff51e6adf37df21f1febcd2521ae351d135743d4.
Diffstat (limited to 'app')
-rw-r--r--app/src/main/java/foundation/e/privacycentralapp/domain/usecases/FakeLocationStateUseCase.kt12
1 files changed, 4 insertions, 8 deletions
diff --git a/app/src/main/java/foundation/e/privacycentralapp/domain/usecases/FakeLocationStateUseCase.kt b/app/src/main/java/foundation/e/privacycentralapp/domain/usecases/FakeLocationStateUseCase.kt
index 5446d3b..d0f5460 100644
--- a/app/src/main/java/foundation/e/privacycentralapp/domain/usecases/FakeLocationStateUseCase.kt
+++ b/app/src/main/java/foundation/e/privacycentralapp/domain/usecases/FakeLocationStateUseCase.kt
@@ -24,6 +24,7 @@ import android.location.Location
import android.location.LocationListener
import android.location.LocationManager
import android.os.Bundle
+import android.os.Looper
import android.util.Log
import foundation.e.privacycentralapp.data.repositories.LocalStateRepository
import foundation.e.privacycentralapp.domain.entities.LocationMode
@@ -176,14 +177,9 @@ class FakeLocationStateUseCase(
LocationManager.NETWORK_PROVIDER, // TODO: tight this with fakelocation module.
0L,
0f,
- listener
- )
- // locationManager.requestLocationUpdates(
- // LocationManager.NETWORK_PROVIDER, // TODO: tight this with fakelocation module.
- // 0L,
- // 0f,
- // listener
- // )
+ listener,
+ Looper.getMainLooper()
+ )
val location: Location? = locationManager.getLastKnownLocation(LocationManager.NETWORK_PROVIDER)
location?.let { listener.onLocationChanged(it) }