InfiniTime.git

commit 276b17979e4eb8ec0485e20c8006f454658097a2

Author: minacode <minamoto9@web.de>

added punctuation

 src/systemtask/SystemTask.cpp | 4 ++--


diff --git a/src/systemtask/SystemTask.cpp b/src/systemtask/SystemTask.cpp
index 2232f56b563e39edc475fb32fc9dce78b5eb0971..71eaf4d9192746c1bbec3e0b6f3b05b1a7381a42 100644
--- a/src/systemtask/SystemTask.cpp
+++ b/src/systemtask/SystemTask.cpp
@@ -426,9 +426,9 @@           nimbleController.NotifyBatteryLevel(batteryController.PercentRemaining());
           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);