aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/youtube
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2021-08-05 12:18:29 +0200
committerdec05eba <dec05eba@protonmail.com>2021-08-05 12:18:29 +0200
commitc35fc22c4ca2a77bfc7317d3b8f78acabb855631 (patch)
tree6e373b0a2b63889ea9d465be37aaaa6f3fc8cfd7 /src/plugins/youtube
parenta0c0f0bd551155270b11ac23c7f1c526a20a44b9 (diff)
Matrix: fix editing hidden events being visible
Diffstat (limited to 'src/plugins/youtube')
-rw-r--r--src/plugins/youtube/YoutubeMediaProxy.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/youtube/YoutubeMediaProxy.cpp b/src/plugins/youtube/YoutubeMediaProxy.cpp
index ed38981..e67a920 100644
--- a/src/plugins/youtube/YoutubeMediaProxy.cpp
+++ b/src/plugins/youtube/YoutubeMediaProxy.cpp
@@ -20,7 +20,7 @@ namespace QuickMedia {
static const int MAX_BUFFER_SIZE = 65536;
static const int RANGE = 524287;
static const int64_t THROTTLED_DOWNLOAD_LIMIT_KB = 80; // TODO: What about people with really slow internet? What if the video player cache is not working and download is stuck, leading to false download speed calculation?
- static const int64_t THROTTLED_DURATION_SECS = 3;
+ static const int64_t THROTTLED_DURATION_SECS = 2;
static const char download_error_response_msg[] =
"HTTP/1.1 500 Internal Server Error\r\n"
"Content-Length: 0\r\n\r\n";