Skip to content
This repository has been archived by the owner on Feb 25, 2023. It is now read-only.

Commit

Permalink
Fix proxy formatting for RegisterAccountForm.account
Browse files Browse the repository at this point in the history
  • Loading branch information
kylestev authored May 16, 2019
1 parent b269bfe commit 93569fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/runescape/forms/registration/RegisterAccountForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ class RegisterAccountForm {
username: this.submitted.email1,
password: this.submitted.password1
},
proxy: url.format(this.proxy, { search: false, fragment: false }),
proxy: this.proxy === null ? null : url.format(this.proxy, { search: false, fragment: false }),
meta: {
userAgent: this.userAgent
}
Expand Down

0 comments on commit 93569fe

Please sign in to comment.