From 62ed3cfedfeb9fcf2d3e21673274dc40fc125b83 Mon Sep 17 00:00:00 2001 From: Waleed <187419608+mWaleedh@users.noreply.github.com> Date: Fri, 1 Aug 2025 11:20:39 +0500 Subject: [PATCH] Update Send.ino --- examples/Messaging/Send/Send.ino | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/Messaging/Send/Send.ino b/examples/Messaging/Send/Send.ino index 275924e9..58b1cf1d 100644 --- a/examples/Messaging/Send/Send.ino +++ b/examples/Messaging/Send/Send.ino @@ -6,7 +6,7 @@ * * You can test this example with Firebase Cloud Messaging Web Client App in /examples/Messaging/WebClient. * - * The complete usage guidelines, please read README.md or visit https://github.com/mobizt/FirebaseClient + * For the complete usage guidelines, please read README.md or visit https://github.com/mobizt/FirebaseClient */ #define ENABLE_SERVICE_AUTH @@ -101,7 +101,7 @@ void loop() void processData(AsyncResult &aResult) { - // Exits when no result available when calling from the loop. + // Exits when no result is available when calling from the loop. if (!aResult.isResult()) return; @@ -155,7 +155,7 @@ void getMsg(Messages::Message &msg) Messages::AndroidConfig androidConfig; - // Priority of a message to send to Android devices. + // Set the priority of a message to send to Android devices. // https://firebase.google.com/docs/reference/fcm/rest/v1/projects.messages#androidmessagepriority androidConfig.priority(Messages::AndroidMessagePriority::_HIGH); @@ -201,4 +201,4 @@ void send_message_await(Messages::Message &msg) Serial.println(payload); else Firebase.printf("Error, msg: %s, code: %d\n", aClient.lastError().message().c_str(), aClient.lastError().code()); -} \ No newline at end of file +}