Don't lowercase in every HTML array.

Could break receipts.
This commit is contained in:
tastytea 2021-03-22 20:00:50 +01:00
parent 34ff6e12a6
commit 27f05636cd
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
1 changed files with 1 additions and 1 deletions

View File

@ -173,7 +173,7 @@ vector<string> get_array(const string &name)
const string value{element.getValue()};
if (!value.empty())
{
const auto new_values{string_to_vector(tolower(value))};
const auto new_values{string_to_vector(value)};
values.insert(values.end(),
std::make_move_iterator(new_values.begin()),
std::make_move_iterator(new_values.end()));