letters should be lowercase

This commit is contained in:
Scott E. Graves 2025-03-27 09:58:11 -05:00
parent b0b69c6dd4
commit df3db38ae7

View File

@ -326,9 +326,9 @@ void handlers::handle_put_mount_location(const httplib::Request &req,
void handlers::handle_get_available_locations(httplib::Response &res) { void handlers::handle_get_available_locations(httplib::Response &res) {
#if defined(_WIN32) #if defined(_WIN32)
constexpr const std::array<std::string_view, 26U> letters{ constexpr const std::array<std::string_view, 26U> letters{
"A:", "B:", "C:", "D:", "E:", "F:", "G:", "H:", "I:", "a:", "b:", "c:", "d:", "e:", "f:", "g:", "h:", "i:",
"J:", "K:", "L:", "M:", "N:", "O:", "P:", "Q:", "R:", "j:", "k:", "l:", "m:", "n:", "o:", "p:", "q:", "r:",
"S:", "T:", "U:", "V:", "W:", "X:", "Y:", "Z:", "s:", "t:", "u:", "v:", "w:", "x:", "y:", "z:",
}; };
auto available = std::accumulate( auto available = std::accumulate(