Merge "Fix channels --stats dump" into pi-dev

This commit is contained in:
TreeHugger Robot
2018-04-19 20:55:49 +00:00
committed by Android (Google) Code Review

View File

@@ -1284,12 +1284,16 @@ public class RankingHelper implements RankingConfig {
if (r.showBadge != DEFAULT_SHOW_BADGE) { if (r.showBadge != DEFAULT_SHOW_BADGE) {
record.put("showBadge", Boolean.valueOf(r.showBadge)); record.put("showBadge", Boolean.valueOf(r.showBadge));
} }
JSONArray channels = new JSONArray();
for (NotificationChannel channel : r.channels.values()) { for (NotificationChannel channel : r.channels.values()) {
record.put("channel", channel.toJson()); channels.put(channel.toJson());
} }
record.put("channels", channels);
JSONArray groups = new JSONArray();
for (NotificationChannelGroup group : r.groups.values()) { for (NotificationChannelGroup group : r.groups.values()) {
record.put("group", group.toJson()); groups.put(group.toJson());
} }
record.put("groups", groups);
} catch (JSONException e) { } catch (JSONException e) {
// pass // pass
} }