mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-28 05:13:53 +01:00
parent
ba9287fa8b
commit
e23f7522f9
2 changed files with 3 additions and 2 deletions
|
|
@ -47,8 +47,8 @@ public class NotificationRenderer extends Renderer<Notification> {
|
|||
@Override
|
||||
public void render() {
|
||||
Notification notification = getContent();
|
||||
StringBuilder str = new StringBuilder(notification.notificationText.trim());
|
||||
str.append(" ");
|
||||
String str = notification.notificationText.trim();
|
||||
str = str.concat(" ");
|
||||
title.setText(str);
|
||||
time.setText(notification.date);
|
||||
switch (notification.notificationType) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue