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
Having JSON API as a Content Type header causes the response method to compress. It should return a string.
The text was updated successfully, but these errors were encountered:
I have a solution, but am unable to push a branch for a PR.
func isTextMime(kind string) bool { mt, _, err := mime.ParseMediaType(kind) if err != nil { return false } if strings.HasPrefix(mt, "text/") { return true } switch mt { case "image/svg+xml": return true case "application/json": return true case "application/vnd.api+json": return true case "application/xml": return true default: return false } }
Have a corresponding test to go along with it
Sorry, something went wrong.
No branches or pull requests
Having JSON API as a Content Type header causes the response method to compress. It should return a string.
The text was updated successfully, but these errors were encountered: