Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,7 @@ All notable changes to this project will be documented in this file.
## UNRELEASED
### Added
### Changed
* Use nio API desugaring instead of the default variant
### Removed
* Obsolete use of API desugaring
* Remove FileUtils.moveFile fix, now fixed by adding nio API desugaring
### Fixed

## [0.71.8]
Expand All @@ -18,6 +15,7 @@ All notable changes to this project will be documented in this file.
* Remove FileUtils.moveFile fix, now fixed by adding nio API desugaring (#159)
### Fixed
* Add missing CreditCards to validity check and automated removal (#161)
* Add `checkInManager.update()` that's been missing under rare debug circumstances (#162)

## [0.71.7]
### Changed
Expand Down
1 change: 1 addition & 0 deletions core/src/main/java/io/snabble/sdk/Project.kt
Original file line number Diff line number Diff line change
Expand Up @@ -560,6 +560,7 @@ class Project internal constructor(jsonObject: JsonObject) {
override fun success(jsonObject: JsonObject) {
jsonObject["shops"]?.let {
shops = Shop.fromJson(it).toList()
Snabble.checkInManager.update()
}

done?.run()
Expand Down