Skip to content

Instantly share code, notes, and snippets.

@ericlaw1979
Created May 13, 2025 17:52
Show Gist options
  • Save ericlaw1979/035821cfe22354d59bba3a83876eaf46 to your computer and use it in GitHub Desktop.
Save ericlaw1979/035821cfe22354d59bba3a83876eaf46 to your computer and use it in GitHub Desktop.
No zstd for Fiddler
// 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