fix(oauth): Make Android user-agent patching unconditional
This commit is contained in:
parent
7a099f259f
commit
bd47c206a1
@ -181,11 +181,12 @@ fn request(method: &'static Method, path: String, redirect: bool, quarantine: bo
|
|||||||
)
|
)
|
||||||
};
|
};
|
||||||
|
|
||||||
// Check if multi sub requested, or if submitted was requested. If so, replace "Android" with a tricky word.
|
// Replace "Android" with a tricky word.
|
||||||
// Issues: #78/#115, #116
|
// Issues: #78/#115, #116
|
||||||
if path.contains('+') || path.contains("/submitted") {
|
// If you include the word "Android", you will get a number of different errors
|
||||||
user_agent = user_agent.replace("Android", "Andr\u{200B}oid");
|
// I guess they don't expect mobile traffic on the endpoints we use
|
||||||
}
|
// Scrawled on wall for next poor soul: Run the test suite.
|
||||||
|
user_agent = user_agent.replace("Android", "Andr\u{200B}oid");
|
||||||
|
|
||||||
// Build request to Reddit. When making a GET, request gzip compression.
|
// Build request to Reddit. When making a GET, request gzip compression.
|
||||||
// (Reddit doesn't do brotli yet.)
|
// (Reddit doesn't do brotli yet.)
|
||||||
|
Loading…
Reference in New Issue
Block a user