and also disable range query becuase I'm not willing to fix it right now
All checks were successful
CI / build (push) Successful in 57s
All checks were successful
CI / build (push) Successful in 57s
This commit is contained in:
parent
86170fd39e
commit
8538766517
1 changed files with 3 additions and 5 deletions
|
@ -96,9 +96,9 @@ func videoplayback(w http.ResponseWriter, req *http.Request) {
|
||||||
// if c == "WEB" {
|
// if c == "WEB" {
|
||||||
// q.Set("alr", "yes")
|
// q.Set("alr", "yes")
|
||||||
// }
|
// }
|
||||||
if req.Header.Get("Range") != "" {
|
// if req.Header.Get("Range") != "" {
|
||||||
q.Set("range", req.Header.Get("Range"))
|
// q.Set("range", req.Header.Get("Range"))
|
||||||
}
|
// }
|
||||||
|
|
||||||
path := req.URL.EscapedPath()
|
path := req.URL.EscapedPath()
|
||||||
|
|
||||||
|
@ -108,7 +108,6 @@ func videoplayback(w http.ResponseWriter, req *http.Request) {
|
||||||
}
|
}
|
||||||
|
|
||||||
proxyURL.RawQuery = q.Encode()
|
proxyURL.RawQuery = q.Encode()
|
||||||
fmt.Print(proxyURL)
|
|
||||||
|
|
||||||
// https://github.com/FreeTubeApp/FreeTube/blob/5a4cd981cdf2c2a20ab68b001746658fd0c6484e/src/renderer/components/ft-shaka-video-player/ft-shaka-video-player.js#L1097
|
// https://github.com/FreeTubeApp/FreeTube/blob/5a4cd981cdf2c2a20ab68b001746658fd0c6484e/src/renderer/components/ft-shaka-video-player/ft-shaka-video-player.js#L1097
|
||||||
body := []byte{0x78, 0} // protobuf body
|
body := []byte{0x78, 0} // protobuf body
|
||||||
|
@ -117,7 +116,6 @@ func videoplayback(w http.ResponseWriter, req *http.Request) {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Panic(err)
|
log.Panic(err)
|
||||||
}
|
}
|
||||||
copyHeaders(req.Header, request.Header, false)
|
|
||||||
|
|
||||||
switch c {
|
switch c {
|
||||||
case "ANDROID":
|
case "ANDROID":
|
||||||
|
|
Loading…
Reference in a new issue