File tree Expand file tree Collapse file tree
superwall/src/main/java/com/superwall/sdk/store Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22
33The changelog for ` Superwall ` . Also see the [ releases] ( https://github.com/superwall/Superwall-Android/releases ) on GitHub.
44
5+ ## 2.7.6
6+
7+ ## Fixes
8+ - Fix concurrency issue with early paywall displays and product loading
9+ - Improve edge case handling in billing
10+ - Improve paywall timeout cases and failAt stamping
11+ - Fix issue with param templating in re-presentation
12+ - Fix race issue with test mode
13+
514## 2.7.5
615
716## Enhancements
Original file line number Diff line number Diff line change @@ -138,7 +138,7 @@ class StoreManager(
138138
139139 for (id in fullProductIds) {
140140 val state =
141- productsByFullId.computeIfAbsent (id) {
141+ productsByFullId.getOrPut (id) {
142142 val deferred = CompletableDeferred <StoreProduct >()
143143 newDeferreds[id] = deferred
144144 ProductState .Loading (deferred)
Original file line number Diff line number Diff line change 1- SUPERWALL_VERSION = 2.7.5
1+ SUPERWALL_VERSION = 2.7.6
You can’t perform that action at this time.
0 commit comments