Skip to content

Commit

Permalink
Merge pull request #52 from defji/patch-1
Browse files Browse the repository at this point in the history
Update Fcm.php
  • Loading branch information
erlangparasu authored Oct 14, 2020
2 parents e7758a8 + 120e335 commit fc552b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Fcm.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public function send()
{
$payloads = [
'content_available' => true,
'priority' => $this->priority ?? 'high',
'priority' => isset($this->priority) ? $this->priority : 'high',
'data' => $this->data,
'notification' => $this->notification
];
Expand Down

0 comments on commit fc552b6

Please sign in to comment.