Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Master #99

Open
wants to merge 7 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion lib/src/hub_connection.dart
Original file line number Diff line number Diff line change
Expand Up @@ -1090,7 +1090,8 @@ class HubConnection {
}

void _invokeClientMethod(InvocationMessage invocationMessage) {
final methods = _methods[invocationMessage.target!.toLowerCase()];
final methods =
_methods[invocationMessage.target?.toLowerCase()] ?? _methods['*'];

if (methods != null) {
try {
Expand Down
12 changes: 6 additions & 6 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
name: signalr_core
description: ASP.NET Core SignalR Client written for Dart that is platform-independent, and can be used on both the command-line and the browser.
version: 1.1.2
version: 1.0.9

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why is the version lower?

homepage: https://github.com/jamiewest/signalr_core

environment:
sdk: ^3.2.6
sdk: '>=3.4.4 <4.0.0'

dependencies:
http: ^1.2.0
http: ^1.2.2
logging: ^1.2.0
web_socket_channel: ^2.4.3
web_socket_channel: ^3.0.1
sse_channel: ^0.1.1
equatable: ^2.0.5

dev_dependencies:
lints: ^3.0.0
test: ^1.24.4
lints: ^4.0.0
test: ^1.25.8