added punctuation

This commit is contained in:
minacode 2022-10-20 14:55:07 +02:00 committed by JF
parent 08fa6bd4e4
commit 276b17979e

View File

@ -426,9 +426,9 @@ void SystemTask::Work() {
break; break;
case Messages::LowBattery: { case Messages::LowBattery: {
Pinetime::Controllers::NotificationManager::Notification notif; Pinetime::Controllers::NotificationManager::Notification notif;
std::array<char, 101> message {"Low Battery\0Charge your watch to prevent data loss\0"}; std::array<char, 101> message {"Low Battery\0Charge your watch to prevent data loss.\0"};
notif.message = message; notif.message = message;
notif.size = 52; notif.size = 53;
notif.category = Pinetime::Controllers::NotificationManager::Categories::SimpleAlert; notif.category = Pinetime::Controllers::NotificationManager::Categories::SimpleAlert;
notificationManager.Push(std::move(notif)); notificationManager.Push(std::move(notif));
PushMessage(Messages::OnNewNotification); PushMessage(Messages::OnNewNotification);