aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/Matrix.cpp
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2021-07-29 05:16:57 +0200
committerdec05eba <dec05eba@protonmail.com>2021-07-29 05:16:57 +0200
commit43e7de19358f730ee18d690a993e97a5195b80c9 (patch)
treea132a8cf5784d7a62a58dc08acf9a0e062bc5539 /src/plugins/Matrix.cpp
parentda9836a92ef69bb93e521985976db0322e2d5316 (diff)
Faster video loading/error when not using xxx plugin (disable ytdl)
Diffstat (limited to 'src/plugins/Matrix.cpp')
-rw-r--r--src/plugins/Matrix.cpp2
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 "";
}