Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: show warning for interceptors not supporting binary data #4566

Merged
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
chore: cleanup
  • Loading branch information
jamesgeorge007 committed Nov 27, 2024
commit 7b59ba5a658130b28e6cb5c2667f80c7673126b4
2 changes: 1 addition & 1 deletion packages/hoppscotch-common/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -576,7 +576,7 @@
"extention_not_enabled": "Extension not enabled."
},
"requestBody": {
"doesnt_support_binary_body": "Sending binary data via current interceptor is not supported yet"
"active_interceptor_doesnt_support_binary_body": "Sending binary data via the current interceptor is not supported yet."
}
},
"layout": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export class InterceptorsInspectorService extends Service implements Inspector {
text: {
type: "text",
text: this.t(
"inspections.requestBody.doesnt_support_binary_body"
"inspections.requestBody.active_interceptor_doesnt_support_binary_body"
),
},
locations: {
Expand Down