Fix settings crash
Test: post notification with an action with a null title, view notification widget Fixes: 250836823 Change-Id: I56707c628b3fcc7d6823e4b3736dd26e3d98dfa7
This commit is contained in:
@@ -581,7 +581,7 @@ public class NotificationStation extends SettingsPreferenceFragment {
|
|||||||
.append(bold(getString(
|
.append(bold(getString(
|
||||||
R.string.notification_log_details_title)))
|
R.string.notification_log_details_title)))
|
||||||
.append(delim)
|
.append(delim)
|
||||||
.append(action.title);
|
.append(action.title != null ? action.title : "");
|
||||||
if (action.actionIntent != null) {
|
if (action.actionIntent != null) {
|
||||||
sb.append("\n ")
|
sb.append("\n ")
|
||||||
.append(bold(getString(
|
.append(bold(getString(
|
||||||
|
Reference in New Issue
Block a user