Skip to content

Commit

Permalink
1.7.2-hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
machiav3lli committed Dec 18, 2024
1 parent 6a5700a commit 5084152
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ android {
applicationId = "com.saulhdev.neofeed"
minSdk = 26
targetSdk = 34
versionCode = 1702
versionName = "1.7.2"
versionCode = 1703
versionName = "1.7.2-hotfix"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true
multiDexEnabled = true
Expand Down
4 changes: 3 additions & 1 deletion app/src/main/java/com/saulhdev/feeder/overlay/OverlayView.kt
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,9 @@ class OverlayView(val context: Context) :
syncScope.launch {
repository.isSyncing
.collect {
rootView.findViewById<SwipeRefreshLayout>(R.id.swipe_to_refresh).isRefreshing = it
mainScope.launch {
rootView.findViewById<SwipeRefreshLayout>(R.id.swipe_to_refresh).isRefreshing = it
}
}
}
syncScope.launch {
Expand Down

0 comments on commit 5084152

Please sign in to comment.