File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
src/SignalR/clients/ts/signalr/src Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -994,15 +994,15 @@ export class HubConnection {
994
994
if ( nonblocking ) {
995
995
if ( streamIds . length !== 0 ) {
996
996
return {
997
+ target : methodName ,
997
998
arguments : args ,
998
999
streamIds,
999
- target : methodName ,
1000
1000
type : MessageType . Invocation ,
1001
1001
} ;
1002
1002
} else {
1003
1003
return {
1004
- arguments : args ,
1005
1004
target : methodName ,
1005
+ arguments : args ,
1006
1006
type : MessageType . Invocation ,
1007
1007
} ;
1008
1008
}
@@ -1012,17 +1012,17 @@ export class HubConnection {
1012
1012
1013
1013
if ( streamIds . length !== 0 ) {
1014
1014
return {
1015
+ target : methodName ,
1015
1016
arguments : args ,
1016
1017
invocationId : invocationId . toString ( ) ,
1017
1018
streamIds,
1018
- target : methodName ,
1019
1019
type : MessageType . Invocation ,
1020
1020
} ;
1021
1021
} else {
1022
1022
return {
1023
+ target : methodName ,
1023
1024
arguments : args ,
1024
1025
invocationId : invocationId . toString ( ) ,
1025
- target : methodName ,
1026
1026
type : MessageType . Invocation ,
1027
1027
} ;
1028
1028
}
@@ -1096,17 +1096,17 @@ export class HubConnection {
1096
1096
1097
1097
if ( streamIds . length !== 0 ) {
1098
1098
return {
1099
+ target : methodName ,
1099
1100
arguments : args ,
1100
1101
invocationId : invocationId . toString ( ) ,
1101
1102
streamIds,
1102
- target : methodName ,
1103
1103
type : MessageType . StreamInvocation ,
1104
1104
} ;
1105
1105
} else {
1106
1106
return {
1107
+ target : methodName ,
1107
1108
arguments : args ,
1108
1109
invocationId : invocationId . toString ( ) ,
1109
- target : methodName ,
1110
1110
type : MessageType . StreamInvocation ,
1111
1111
} ;
1112
1112
}
You can’t perform that action at this time.
0 commit comments