Skip to content

Commit

Permalink
Fix bug causing widget to not refresh.
Browse files Browse the repository at this point in the history
  • Loading branch information
hwki committed Oct 24, 2022
1 parent 5089d9b commit 26e9617
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions bitcoin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ android {
applicationId "com.brentpanther.bitcoinwidget"
minSdk 23
targetSdk 33
versionCode 311
versionName "8.3.1"
versionCode 312
versionName "8.3.2"

javaCompileOptions {
annotationProcessorOptions {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ abstract class WidgetDataStrategy(val widgetId: Int) {

var widget : Widget?
get() {
return _widget ?: dao.getByWidgetId(widgetId)
_widget = _widget ?: dao.getByWidgetId(widgetId)
return _widget!!
}
set(value) {
_widget = value
Expand Down
1 change: 1 addition & 0 deletions fastlane/metadata/android/en-US/changelogs/312.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fixed a bug preventing the widget to not refresh.

0 comments on commit 26e9617

Please sign in to comment.