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

am: 388b37c1fe

Change-Id: I96ac7df69f112cfb9f629c21a9da5c20d5b5a028
This commit is contained in:
Julia Reynolds
2017-03-29 18:23:47 +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();