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

am: a48cb8d978

Change-Id: I0dc6f1393423509cf7c679395f621828c7948b5f
This commit is contained in:
Julia Reynolds
2017-03-29 18:22:21 +00:00
committed by android-build-merger

View File

@@ -102,6 +102,9 @@ public class AppNotificationSettings extends NotificationSettingsBase {
@Override
protected void onPostExecute(Void unused) {
if (getHost() == null) {
return;
}
populateChannelList();
}
}.execute();