Skip to content

Commit

Permalink
Fixed an issue where not all widgets would regularly update on certai…
Browse files Browse the repository at this point in the history
…n devices.
  • Loading branch information
hwki committed Jan 15, 2024
1 parent f13d15e commit 6fbbda8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions bitcoin/build.gradle
Expand Up @@ -13,8 +13,8 @@ android {
applicationId "com.brentpanther.bitcoinwidget"
minSdk 23
targetSdk 34
versionCode 325
versionName "8.5.0"
versionCode 326
versionName "8.5.1"

}

Expand Down
Expand Up @@ -9,7 +9,7 @@ class WidgetUpdateWorker(context: Context, params: WorkerParameters) : Coroutine

override suspend fun doWork(): Result {
return try {
WidgetUpdater.update(applicationContext, WidgetApplication.instance.widgetIds, false)
WidgetUpdater.update(applicationContext, WidgetApplication.instance.widgetIds, false).join()
Result.success()
} catch (e: Exception) {
Log.e(TAG, "Exception in worker", e)
Expand Down
1 change: 1 addition & 0 deletions fastlane/metadata/android/en-US/changelogs/326.txt
@@ -0,0 +1 @@
Fixed an issue where not all widgets would regularly update on certain devices.

0 comments on commit 6fbbda8

Please sign in to comment.