Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Transcriptor.lua
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ local GetSpellName = C_Spell.GetSpellName
local GetBestMapForUnit = C_Map.GetBestMapForUnit
local C_GossipInfo_GetOptions = C_GossipInfo.GetOptions
local issecretvalue = issecretvalue or function() return false end
local ShouldAurasBeSecret = C_Secrets and C_Secrets.ShouldAurasBeSecret or function() return false end
local mapvalues = mapvalues
local function ReplaceSecrets(value) if issecretvalue(value) then return "<secret>" else return value end end

Expand Down Expand Up @@ -2266,7 +2267,7 @@ do
end

hiddenAuraEngageList = {}
do
if not ShouldAurasBeSecret() then -- 12.1: enumerating auras errors for tainted code when auras are restricted (RequiresUnitAuraAccess)
local GetAuraDataByIndex = C_UnitAuras.GetAuraDataByIndex
local UnitPosition = UnitPosition
local _, _, _, myInstance = UnitPosition("player")
Expand Down
Loading