Make sure we do not make UI calls from background thread in DashboardSummary class.
Bug: 79705354 Test: make RunSettingsRoboTests -j40 and manual testing. Change-Id: I08a08e05f3424f4a6d2100aed32d32bb15997c86
This commit is contained in:
@@ -276,7 +276,7 @@ public class DashboardSummary extends InstrumentedFragment
|
|||||||
mSummaryLoader.updateSummaryToCache(category);
|
mSummaryLoader.updateSummaryToCache(category);
|
||||||
mStagingCategory = category;
|
mStagingCategory = category;
|
||||||
if (mSuggestionControllerMixin == null) {
|
if (mSuggestionControllerMixin == null) {
|
||||||
mAdapter.setCategory(mStagingCategory);
|
ThreadUtils.postOnMainThread(() -> mAdapter.setCategory(mStagingCategory));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (mSuggestionControllerMixin.isSuggestionLoaded()) {
|
if (mSuggestionControllerMixin.isSuggestionLoaded()) {
|
||||||
|
Reference in New Issue
Block a user