Skip to content

Commit

Permalink
Fix Crash on Beta branch when using trade search (#7168)
Browse files Browse the repository at this point in the history
Fixes #7167
  • Loading branch information
secondfry authored Dec 31, 2023
1 parent 6a1c0b5 commit defe6f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Classes/TradeQueryRequests.lua
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ function TradeQueryRequestsClass:buildUrl(root, realm, league, queryId)
if realm and realm ~='pc' then
result = result .. "/" .. realm
end
result = result .. "/" .. league
result = result .. "/" .. league:gsub(" ", "+")
if queryId then
result = result .. "/" .. queryId
end
Expand Down

0 comments on commit defe6f5

Please sign in to comment.