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

Commit 388b37c1 authored by Julia Reynolds's avatar Julia Reynolds Committed by android-build-merger
Browse files

Merge "Don't run postexecute if activity is gone." into oc-dev

am: a48cb8d9

Change-Id: I0dc6f1393423509cf7c679395f621828c7948b5f
parents 40c22ec7 a48cb8d9
Loading
Loading
Loading
Loading
+3 −0
Original line number Original line Diff line number Diff line
@@ -102,6 +102,9 @@ public class AppNotificationSettings extends NotificationSettingsBase {


            @Override
            @Override
            protected void onPostExecute(Void unused) {
            protected void onPostExecute(Void unused) {
                if (getHost() == null) {
                    return;
                }
                populateChannelList();
                populateChannelList();
            }
            }
        }.execute();
        }.execute();