Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0cbc06c5 authored by Eugene Susla's avatar Eugene Susla Committed by Automerger Merge Worker
Browse files

Merge "Fix NPE in CDM UI" into sc-dev am: f341c5ab

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/13700422

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: I718791fa7e6b5c906f89d320a191220782f55a23
parents 55c52195 f341c5ab
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -143,7 +143,7 @@ public class CompanionDeviceActivity extends Activity {
    }

    static void notifyDevicesChanged() {
        if (sInstance != null && !sInstance.isFinishing()) {
        if (sInstance != null && sInstance.mDevicesAdapter != null && !sInstance.isFinishing()) {
            sInstance.mDevicesAdapter.notifyDataSetChanged();
        }
    }