refactor: moving "notification_action_replied" string to strings_mo.xml

This commit is contained in:
LucasGGamerM
2023-03-04 10:07:28 -03:00
parent e964b76302
commit 338e164143
3 changed files with 3 additions and 7 deletions

View File

@@ -290,7 +290,7 @@ public class PushNotificationReceiver extends BroadcastReceiver{
.setDefaults(Notification.DEFAULT_SOUND | Notification.DEFAULT_VIBRATE);
Notification repliedNotification = builder.setSmallIcon(R.drawable.ic_ntf_logo)
.setContentText(context.getString(R.string.sk_notification_action_replied, notification.status.account.getDisplayUsername()))
.setContentText(context.getString(R.string.mo_notification_action_replied, notification.status.account.getDisplayUsername()))
.build();
notificationManager.notify(accountID, notificationId, repliedNotification);
}