From 4afa53a8bb6b02c07db8c54362311c21444a3ced Mon Sep 17 00:00:00 2001 From: dec05eba Date: Wed, 30 Nov 2022 01:40:50 +0100 Subject: Matrix: remove upload limit check if server returns error, allow @ in username in login but remove it --- src/plugins/Matrix.cpp | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'src/plugins') diff --git a/src/plugins/Matrix.cpp b/src/plugins/Matrix.cpp index 2452548..688e16e 100644 --- a/src/plugins/Matrix.cpp +++ b/src/plugins/Matrix.cpp @@ -4877,13 +4877,8 @@ namespace QuickMedia { filename = file_get_filename(filepath); int64_t upload_limit; - PluginResult config_result = get_config(&upload_limit); - if(config_result != PluginResult::OK) { - err_msg = "Failed to get file size limit from server"; - return config_result; - } - - if(file_analyzer.get_file_size() > upload_limit) { + PluginResult config_result = get_config(&upload_limit); // get_config can fail sometimes??? happened on plan9.rocks, why? is /r0/config optional? + if(config_result == PluginResult::OK && file_analyzer.get_file_size() > upload_limit) { err_msg = "File is too large! max upload size on your homeserver is " + std::to_string((double)upload_limit / 1024.0 / 1024.0) + " mb, the file you tried to upload is " + std::to_string((double)file_analyzer.get_file_size() / 1024.0 / 1024.0) + " mb"; return PluginResult::ERR; } -- cgit v1.2.3