Skip to content

Commit

Permalink
Reduce HTTP chunk from wrong 512M to 512K
Browse files Browse the repository at this point in the history
  • Loading branch information
Ri0n committed Jul 10, 2024
1 parent 8bf5702 commit 898efbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/filesharingproxy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@

#include <cstring>

#define HTTP_CHUNK (512 * 1024 * 1024)
#define HTTP_CHUNK (512 * 1024)

template <typename Impl> class ControlBase : public QObject {

Expand Down

0 comments on commit 898efbd

Please sign in to comment.