We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2231c72 commit 2e4951bCopy full SHA for 2e4951b
src/util/json.ts
@@ -38,7 +38,7 @@ export const isProbablyJsonRecords = (text: Buffer | undefined) => {
38
39
if (SIGNALR_HUB_START_REGEX.test(startChunk) && SIGNALR_HUB_END_REGEX.test(endChunk)) {
40
// SignalR hub protocol:
41
- // https://github.com/dotnet/aspnetcore/blob/main/src/SignalR/docs/specs/HubProtocol.md#json-encoding
+ // https://github.com/dotnet/aspnetcore/blob/v9.0.8/src/SignalR/docs/specs/HubProtocol.md
42
return true;
43
}
44
0 commit comments