This commit is contained in:
minacode 2022-12-07 14:01:43 +01:00 committed by JF
parent d62402cb3f
commit c02b505998

View File

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