summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorminacode <minamoto9@web.de>2022-10-20 14:55:07 +0200
committerJF <JF002@users.noreply.github.com>2022-12-27 12:13:52 +0100
commit276b17979e4eb8ec0485e20c8006f454658097a2 (patch)
tree7c8170ceebf4461c65b98235322cb6a662b78050
parent08fa6bd4e4a3561b699150327b6c1c8fc0624a42 (diff)
added punctuation
-rw-r--r--src/systemtask/SystemTask.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/systemtask/SystemTask.cpp b/src/systemtask/SystemTask.cpp
index 2232f56b..71eaf4d9 100644
--- a/src/systemtask/SystemTask.cpp
+++ b/src/systemtask/SystemTask.cpp
@@ -426,9 +426,9 @@ void SystemTask::Work() {
break;
case Messages::LowBattery: {
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.size = 52;
+ notif.size = 53;
notif.category = Pinetime::Controllers::NotificationManager::Categories::SimpleAlert;
notificationManager.Push(std::move(notif));
PushMessage(Messages::OnNewNotification);