1
0
Fork 0
mirror of https://gitlab.com/niansa/discord_llama.git synced 2025-03-06 20:48:25 +01:00

Fixed utils::max_words cutting off the string too early

This commit is contained in:
niansa 2023-04-29 21:52:55 +02:00
parent 1611b82e37
commit b13afed724

View file

@ -49,6 +49,6 @@ std::string_view max_words(std::string_view text, unsigned count) {
}
}
// Return resulting string
return {text.data(), text.size()-idx};
return {text.data(), idx};
}
}