File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
sdk/src/main/java/ly/count/android/sdk Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 1616 * presentRating(Context, String, FeedbackCallback)
1717
1818* Mitigated an issue where content communication was done twice.
19+ * Mitigated a concurrency issue while restarting stopped views.
1920
2021## 24.7.4
2122* Disabled caching for webviews.
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ public class ModuleViews extends ModuleBase implements ViewIdProvider {
3636
3737 Map <String , Object > automaticViewSegmentation = new HashMap <>();//automatic view segmentation
3838
39- Map <String , ViewData > viewDataMap = new HashMap <>(); // map viewIDs to its viewData
39+ final Map <String , ViewData > viewDataMap = new ConcurrentHashMap <>(); // map viewIDs to its viewData
4040
4141 SafeIDGenerator safeViewIDGenerator ;
4242
You can’t perform that action at this time.
0 commit comments