We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello.
You can see two other beetlex errors in the following repository:
CORS Origin does not work. The cookie parser does not work and you must call the parser before using it.
https://github.com/mbtolou/beetlex-error
The text was updated successfully, but these errors were encountered:
Custom OptionsAttribute
class MyOptions : BeetleX.FastHttpApi.OptionsAttribute { public override void SetResponse(HttpRequest request, HttpResponse response) { base.SetResponse(request, response); } }
Sorry, something went wrong.
In This Line :
FastHttpApi/src/Header.cs
Line 364 in b695cdb
convert :
if (line[0] == 'C' && line[5] == 'e' && line[1] == 'o' && line[2] == 'o' && line[3] == 'k' && line[4] == 'i') { HttpParse.AnalyzeCookie(line.Slice(8, line.Length - 8), cookies); }
To
if ((line[0] == 'C' || line[0] == 'c' ) && line[5] == 'e' && line[1] == 'o' && line[2] == 'o' && line[3] == 'k' && line[4] == 'i') { HttpParse.AnalyzeCookie(line.Slice(8, line.Length - 8), cookies); }
Fix Cookie Problem.
No branches or pull requests
Hello.
You can see two other beetlex errors in the following repository:
CORS Origin does not work.
The cookie parser does not work and you must call the parser before using it.
https://github.com/mbtolou/beetlex-error
The text was updated successfully, but these errors were encountered: