Skip to content
This repository has been archived by the owner on Nov 28, 2022. It is now read-only.

Commit

Permalink
Prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
Dom Harrington committed Jun 18, 2018
1 parent 72bf64d commit 9c6b00b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/api-explorer/src/lib/oas-to-har.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ module.exports = (
// Add protocol to urls starting with // e.g. //example.com
// This is because httpsnippet throws a HARError when it doesnt have a protocol
if (har.url.match(/^\/\//)) {
har.url = `https:${har.url}`
har.url = `https:${har.url}`;
}

if (oas[extensions.PROXY_ENABLED] && opts.proxyUrl) {
Expand Down

0 comments on commit 9c6b00b

Please sign in to comment.