Skip to content

Commit

Permalink
task(SDK-3215) - Updates error message for default channel for push n…
Browse files Browse the repository at this point in the history
…otifications
  • Loading branch information
Anush-Shand committed Oct 19, 2023
1 parent 66f89f2 commit 4e33b72
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,12 @@ public static ValidationResult create(int errorCode, int messageCode, String...
case Constants.CHANNEL_ID_MISSING_IN_PAYLOAD:
msg
=
"Unable to render notification, channelId is required but not provided in the notification payload: "
"ChannelId is required for API 26+ but not provided in the notification payload. Falling to default channel: "
+ values[0];
break;
case Constants.CHANNEL_ID_NOT_REGISTERED:
msg = "Unable to render notification on channelId: " + values[0]
+ " as it is not registered by the app.";
+ " as it is not registered by the app. Falling to default channel: ";
break;
case Constants.NOTIFICATION_VIEWED_DISABLED:
msg
Expand Down

0 comments on commit 4e33b72

Please sign in to comment.