File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Abp/Framework/scripts/libs Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ var abp = abp || {};
41
41
42
42
// Connect to the server
43
43
abp . signalr . connect = function ( ) {
44
- var url = abp . signalr . url || '/ signalr';
44
+ var url = abp . signalr . url || ( abp . appPath + ' signalr') ;
45
45
46
46
// Start the connection.
47
47
startConnection ( url , configureConnection )
@@ -75,7 +75,7 @@ var abp = abp || {};
75
75
return function start ( transport ) {
76
76
abp . log . debug ( 'Starting connection using ' + signalR . HttpTransportType [ transport ] + ' transport' ) ;
77
77
var connection = new signalR . HubConnectionBuilder ( )
78
- . withUrl ( abp . appPath + url , transport )
78
+ . withUrl ( url , transport )
79
79
. build ( ) ;
80
80
if ( configureConnection && typeof configureConnection === 'function' ) {
81
81
configureConnection ( connection ) ;
You can’t perform that action at this time.
0 commit comments