Skip to content

Commit fc552b6

Browse files
authored
Merge pull request #52 from defji/patch-1
Update Fcm.php
2 parents e7758a8 + 120e335 commit fc552b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Fcm.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public function send()
7777
{
7878
$payloads = [
7979
'content_available' => true,
80-
'priority' => $this->priority ?? 'high',
80+
'priority' => isset($this->priority) ? $this->priority : 'high',
8181
'data' => $this->data,
8282
'notification' => $this->notification
8383
];

0 commit comments

Comments
 (0)