From 86a6ce6ee861cd1172314374b28a638adf00edb7 Mon Sep 17 00:00:00 2001 From: Sunny Neo Date: Fri, 7 Aug 2020 17:20:39 +0800 Subject: [PATCH] Change maximum file limit to 100MB --- Src/Common/FSecure/C3/Interfaces/Channels/Github.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Src/Common/FSecure/C3/Interfaces/Channels/Github.cpp b/Src/Common/FSecure/C3/Interfaces/Channels/Github.cpp index b1fb34b..3b40625 100644 --- a/Src/Common/FSecure/C3/Interfaces/Channels/Github.cpp +++ b/Src/Common/FSecure/C3/Interfaces/Channels/Github.cpp @@ -15,7 +15,7 @@ FSecure::C3::Interfaces::Channels::Github::Github(ByteView arguments) size_t FSecure::C3::Interfaces::Channels::Github::OnSendToChannel(ByteView data) { // There is a cap on uploads of files >150mb at which point different APIs are required. - data = data.SubString(0, 150 * 1024 * 1024); + data = data.SubString(0, 100 * 1024 * 1024); m_githubObj.WriteMessageToFile(m_outboundDirectionName, data); return data.size(); }