I just tested the web client and ump is not in the query string any more:
|
let video_playback = req.path().eq("/videoplayback"); |
|
let is_android = video_playback && query.get("c").unwrap_or("").eq("ANDROID"); |
|
let is_web = video_playback && query.get("c").unwrap_or("").eq("WEB"); |
|
|
|
let is_ump = video_playback && query.get("ump").is_some(); |
I just tested the web client and
umpis not in the query string any more:piped-proxy/src/main.rs
Lines 278 to 282 in 2d5be45