show CW in system notification for CW'd statuses (#754)
* show CW in system notification for CW'd statuses * show spoiler text instead of generic CW message
This commit is contained in:
parent
44b1afc71f
commit
ef1fa0ca94
1 changed files with 5 additions and 1 deletions
|
@ -549,7 +549,11 @@ public class NotificationHelper {
|
|||
case MENTION:
|
||||
case FAVOURITE:
|
||||
case REBLOG:
|
||||
return notification.getStatus().getContent().toString();
|
||||
if (notification.getStatus().getSensitive()) {
|
||||
return notification.getStatus().getSpoilerText();
|
||||
} else {
|
||||
return notification.getStatus().getContent().toString();
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue