diff options
author | dec05eba <dec05eba@protonmail.com> | 2021-07-29 05:16:57 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2021-07-29 05:16:57 +0200 |
commit | 43e7de19358f730ee18d690a993e97a5195b80c9 (patch) | |
tree | a132a8cf5784d7a62a58dc08acf9a0e062bc5539 /src/plugins | |
parent | da9836a92ef69bb93e521985976db0322e2d5316 (diff) |
Faster video loading/error when not using xxx plugin (disable ytdl)
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/Matrix.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/Matrix.cpp b/src/plugins/Matrix.cpp index 68b9524..ca211e1 100644 --- a/src/plugins/Matrix.cpp +++ b/src/plugins/Matrix.cpp @@ -34,7 +34,7 @@ static const char* CONTINUE_FILTER = "{\"presence\":{\"limit\":0,\"types\":[\"\" static std::string capitalize(const std::string &str) { if(str.size() >= 1) - return (char)std::toupper(str[0]) + str.substr(1); + return QuickMedia::to_upper(str[0]) + str.substr(1); else return ""; } |