kawankoding / laravel-fcm

Firebase Cloud Messaging (FCM) sender for Laravel
172 stars 56 forks source link

Wrong payload data #18

Closed bishalkc closed 5 years ago

bishalkc commented 5 years ago

Hello,

Just an FYI the payload flag has a typo in src/Fcm.php

$fields = [ '**content-available**' => true, 'priority' => 'high', 'data' => $this->data, 'notification' => $this->notification ]; should be $fields = [ '**content_available**' => true, 'priority' => 'high', 'data' => $this->data, 'notification' => $this->notification ];

mai92 commented 5 years ago

Thank you for correction, i have corrected it