Skip to content

Commit b83451b

Browse files
Fixes issue with DevToolsPlugin not showing request headers (#1303)
Co-authored-by: Garry Trinder <garry@trinder365.co.uk>
1 parent 44e27ba commit b83451b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

DevProxy.Plugins/Inspection/DevToolsPlugin.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,8 @@ public override async Task AfterResponseAsync(ProxyResponseArgs e, CancellationT
185185
.GroupBy(h => h.Name)
186186
.ToDictionary(g => g.Key, g => string.Join(", ", g.Select(h => h.Value))),
187187
MimeType = e.Session.HttpClient.Response.ContentType
188-
}
188+
},
189+
HasExtraInfo = true
189190
}
190191
};
191192

0 commit comments

Comments
 (0)