Skip to content

Commit

Permalink
fix problem loading bookmark with rawBody
Browse files Browse the repository at this point in the history
  • Loading branch information
mirkoperillo committed Dec 26, 2017
1 parent 1b6e4e7 commit eeffa9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ function AppViewModel() {
self.bodyType(selectedBookmark.request.bodyType);
if(self.bodyType() == 'form-data') {
self.formDataParams(selectedBookmark.request.body);
} else if (bodyType == 'x-www-form-urlencoded') {
} else if (self.bodyType() == 'x-www-form-urlencoded') {
self.formEncodedParams(selectedBookmark.request.body);
} else {
self.rawBody(selectedBookmark.request.body);
Expand Down

0 comments on commit eeffa9e

Please sign in to comment.