Skip to content

Commit

Permalink
fixed an url encoding issue (#378)
Browse files Browse the repository at this point in the history
* fixed an uri encode issue

* updated version/notes
  • Loading branch information
Eruyome authored Jun 21, 2017
1 parent df24f85 commit 42b300a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
Binary file modified Fallback.exe
Binary file not shown.
4 changes: 4 additions & 0 deletions resources/Updates_Trade.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
The following is a list of what has been updated, starting with 1.1.0

2.3.4
================================================================================================
Fixed an url encoding issue with the new browser search.

2.3.3
================================================================================================
Changed the way that searches openend in your browser are functioning. They now also work when poe.trade has cloudflare protection enabled without needing to bypass this protection.
Expand Down
2 changes: 1 addition & 1 deletion resources/VersionTrade.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
TradeReleaseVersion := "v2.3.3"
TradeReleaseVersion := "v2.3.4"
TradeAHKVersionRequired := "1.1.24.01"
6 changes: 2 additions & 4 deletions resources/ahk/TradeMacro.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -2185,11 +2185,9 @@ class _ParamMod {
mod_min := ""
mod_max := ""
ToPayload()
{
; for some reason '+' is not encoded properly, this affects mods like '+#% to all Elemental Resistances'
this.mod_name := StrReplace(this.mod_name, "+", "%2B")
{
this.mod_name := TradeUtils.UriEncode(this.mod_name)
p := "&mod_name=" this.mod_name "&mod_min=" this.mod_min "&mod_max=" this.mod_max
p := "&mod_name=" this.mod_name "&mod_min=" this.mod_min "&mod_max=" this.mod_max
Return p
}
}
Expand Down

0 comments on commit 42b300a

Please sign in to comment.