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
intersection
If the user requests en-US, and I specify support for en, I would expect intersection to return en, but it does not:
en-US
en
[src/main.rs:2:5] accept_language::intersection("en-US, de", &["en", "de"]) = [ "de", ]
This means potentially having a huge list of language codes to match against.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If the user requests
en-US
, and I specify support foren
, I would expectintersection
to returnen
, but it does not:This means potentially having a huge list of language codes to match against.
The text was updated successfully, but these errors were encountered: