Skip to content

Commit

Permalink
Merge pull request #1435 from hantrungkien/main
Browse files Browse the repository at this point in the history
fix(graphql): fix error is throwed when toggleConnection != null & fix(graphql_flutter): upgrate connectivity_plus
  • Loading branch information
vincenzopalazzo authored May 27, 2024
2 parents c0621cc + def3290 commit 79c80fc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,8 @@ class SocketClient {
final SocketClientConfig config;

final BehaviorSubject<SocketConnectionState> _connectionStateController =
BehaviorSubject<SocketConnectionState>();
BehaviorSubject<SocketConnectionState>.seeded(
SocketConnectionState.notConnected);

final HashMap<String, SubscriptionListener> _subscriptionInitializers =
HashMap();
Expand Down
2 changes: 1 addition & 1 deletion packages/graphql_flutter/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ dependencies:
meta: ^1.7.0
path_provider: ^2.0.1
path: ^1.8.0
connectivity_plus: ^6.0.1
connectivity_plus: ^6.0.3
hive: ^2.0.0
plugin_platform_interface: ^2.0.0
flutter_hooks: '>=0.18.2 <0.21.0'
Expand Down

0 comments on commit 79c80fc

Please sign in to comment.