Skip to content

Commit

Permalink
Fixed issue with tsv export hyperlinks
Browse files Browse the repository at this point in the history
  • Loading branch information
evil-morfar committed Mar 6, 2020
1 parent db26738 commit d0a3054
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Modules/History/lootHistory.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1544,16 +1544,16 @@ do
tinsert(export, tostring(player))
tinsert(export, tostring(self:GetLocalizedDate(d.date)))
tinsert(export, tostring(d.time))
tinsert(export, "=HYPERLINK(\""..self:GetWowheadLinkFromItemLink(d.lootWon).."\",\""..tostring(d.lootWon).."\")")
tinsert(export, "=HYPERLINK(\""..self:GetWowheadLinkFromItemLink(d.lootWon).."\";\""..tostring(d.lootWon).."\")")
tinsert(export, addon:GetItemIDFromLink(d.lootWon))
tinsert(export, addon:GetItemStringFromLink(d.lootWon))
tinsert(export, tostring(d.response))
tinsert(export, tostring(d.votes))
tinsert(export, tostring(d.class))
tinsert(export, tostring(d.instance))
tinsert(export, tostring(d.boss))
tinsert(export, d.itemReplaced1 and "=HYPERLINK(\""..self:GetWowheadLinkFromItemLink(tostring(d.itemReplaced1)).."\",\""..tostring(d.itemReplaced1).."\")" or "")
tinsert(export, d.itemReplaced2 and "=HYPERLINK(\""..self:GetWowheadLinkFromItemLink(tostring(d.itemReplaced2)).."\",\""..tostring(d.itemReplaced2).."\")" or "")
tinsert(export, d.itemReplaced1 and "=HYPERLINK(\""..self:GetWowheadLinkFromItemLink(tostring(d.itemReplaced1)).."\";\""..tostring(d.itemReplaced1).."\")" or "")
tinsert(export, d.itemReplaced2 and "=HYPERLINK(\""..self:GetWowheadLinkFromItemLink(tostring(d.itemReplaced2)).."\";\""..tostring(d.itemReplaced2).."\")" or "")
tinsert(export, tostring(d.responseID))
tinsert(export, tostring(d.isAwardReason or false))
tinsert(export, rollType)
Expand Down
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ The pop-up for keeping items now shows "Keep"/"Trade" instead of yes/no. (#183).
## Bugfixes
* *Passes no longer require a note with 'Require Notes' enabled. (#184)*
* *Fixes issue with receiving votes outside an instance (Curse#413).*
* *Fixed issues with TSV Export hyperlinks.*


# v2.18.0
Expand Down

0 comments on commit d0a3054

Please sign in to comment.