Skip to content

Commit c41aff2

Browse files
authored
fix(fcm): Correctly map the string representation of the Android Config normal priority. (#452)
* Update AndroidConfig.cs * Empty commit message * Empty
1 parent ca2fcb6 commit c41aff2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

FirebaseAdmin/FirebaseAdmin/Messaging/AndroidConfig.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ private string PriorityString
107107
this.Priority = Messaging.Priority.High;
108108
return;
109109
case "normal":
110-
this.Priority = Messaging.Priority.High;
110+
this.Priority = Messaging.Priority.Normal;
111111
return;
112112
default:
113113
throw new ArgumentException(

0 commit comments

Comments
 (0)