Skip to content

Commit 1542dea

Browse files
authored
fixed platform check (#522)
1 parent 49e83b3 commit 1542dea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/stream_video_push_notification/lib/src/stream_video_push_notification.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class StreamVideoPushNotificationManager implements PushNotificationManager {
2323
return (CoordinatorClient client) {
2424
final params = _defaultPushParams.merge(pushParams);
2525

26-
if (Platform.isIOS) {
26+
if (CurrentPlatform.isIos) {
2727
StreamVideoPushNotificationPlatform.instance.initData(params.toJson());
2828
}
2929

0 commit comments

Comments
 (0)