Created
May 13, 2025 17:52
-
-
Save ericlaw1979/035821cfe22354d59bba3a83876eaf46 to your computer and use it in GitHub Desktop.
No zstd for Fiddler
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Add just inside here: | |
// static function OnBeforeRequest(oSession: Session) { | |
// Don't request zstd content-encoding because Telerik didn't bother adding support. | |
if (oSession.RequestHeaders.ExistsAndContains("Accept-Encoding", "zstd")) { | |
oSession.RequestHeaders["Accept-Encoding"] = oSession.RequestHeaders["Accept-Encoding"].Replace(", zstd", ""); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment