Skip to content
Merged
Changes from 1 commit
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
Next Next commit
[ASP.NET Core] Fix network.protocol.version
  • Loading branch information
Vishwesh Bankwar
Vishwesh Bankwar committed Oct 30, 2023
commit a6ca710ec08188a90bf81ed3bd456911904165ca
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ public static string GetFlavorTagValueFromProtocol(string protocol)
switch (protocol)
{
case "HTTP/2":
return "2.0";
return "2";

case "HTTP/3":
return "3.0";
return "3";

case "HTTP/1.1":
return "1.1";
Expand Down