Skip to content

Commit

Permalink
Added the query string (connection.qs) to the negotiate request
Browse files Browse the repository at this point in the history
- This will allow devs to determine authentication on negotiation
#1556
  • Loading branch information
NTaylorMullen committed Feb 23, 2013
1 parent c6efd4f commit 3435377
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/Microsoft.AspNet.SignalR.Client.JS/jquery.signalR.core.js
Original file line number Diff line number Diff line change
Expand Up @@ -386,6 +386,9 @@
};

var url = connection.url + "/negotiate";

url = signalR.transports._logic.addQs(url, connection);

connection.log("Negotiating with '" + url + "'.");
$.ajax({
url: url,
Expand Down

0 comments on commit 3435377

Please sign in to comment.