Skip to content

Commit

Permalink
Fix timeout parameter (#159)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryangittings authored Feb 23, 2025
1 parent 09c3a3e commit 7c9bdbe
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/OneSignalServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,10 @@ public function boot()

return new OneSignalClient(
$oneSignalConfig['app_id'],
$oneSignalConfig['rest_api_url'] ?? 'https://api.onesignal.com',
$oneSignalConfig['rest_api_key'],
''
'',
0,
$oneSignalConfig['rest_api_url'] ?? 'https://api.onesignal.com'
);
});
}
Expand Down

0 comments on commit 7c9bdbe

Please sign in to comment.