diff options
author | socialgraph <socialgraph@yandex-team.com> | 2022-09-08 14:28:30 +0300 |
---|---|---|
committer | socialgraph <socialgraph@yandex-team.com> | 2022-09-08 14:28:30 +0300 |
commit | dfe3fdb76414445f7674788b36e925d49280e9f1 (patch) | |
tree | 844d2f9dd199440f700d7ef28e1d208b67f827b7 /library/cpp/uri/parse.cpp | |
parent | 1e2781d41b8073e19248305f6d51888dfa6d469d (diff) | |
download | ydb-dfe3fdb76414445f7674788b36e925d49280e9f1.tar.gz |
use hash bang flag
use hash bang flag
Diffstat (limited to 'library/cpp/uri/parse.cpp')
-rw-r--r-- | library/cpp/uri/parse.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/library/cpp/uri/parse.cpp b/library/cpp/uri/parse.cpp index 1db4e008c4..ee45a5b558 100644 --- a/library/cpp/uri/parse.cpp +++ b/library/cpp/uri/parse.cpp @@ -42,6 +42,11 @@ namespace NUri { , TParseFlags(0 // FieldFragment | TFeature::FeaturesEncodePChar, + 0 | TFeature::FeatureToLower | TFeature::FeatureEncodeSpaceAsPlus) + + , + TParseFlags(0 // FieldHashBang + | TFeature::FeaturesEncodePChar, 0 | TFeature::FeatureToLower | TFeature::FeatureEncodeSpaceAsPlus)}; namespace NParse { |