Skip to content

Commit

Permalink
Fix observation feeds favorite and important filters
Browse files Browse the repository at this point in the history
  • Loading branch information
newmanw committed Apr 24, 2024
1 parent 4277a24 commit 631acb6
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ import mil.nga.giat.mage.data.datasource.observation.ObservationLocalDataSource
import mil.nga.giat.mage.database.model.observation.State
import mil.nga.giat.mage.data.datasource.event.EventLocalDataSource
import mil.nga.giat.mage.data.datasource.user.UserLocalDataSource
import mil.nga.giat.mage.database.model.observation.ObservationFavorite
import mil.nga.giat.mage.database.model.observation.ObservationImportant
import mil.nga.giat.mage.sdk.event.IObservationEventListener
import java.sql.SQLException
import java.util.*
Expand All @@ -31,8 +33,8 @@ class ObservationFeedViewModel @Inject constructor(
val application: Application,
val preferences: SharedPreferences,
private val observationDao: Dao<Observation, Long>,
private val observationImportantDao: Dao<Observation, Long>,
private val observationFavoriteDao: Dao<Observation, Long>,
private val observationImportantDao: Dao<ObservationImportant, Long>,
private val observationFavoriteDao: Dao<ObservationFavorite, Long>,
private val observationLocalDataSource: ObservationLocalDataSource,
private val observationRepository: ObservationRepository,
private val userLocalDataSource: UserLocalDataSource,
Expand Down

0 comments on commit 631acb6

Please sign in to comment.