lua error
fireymerlin opened this issue ยท 6 comments
With no other addons, and not in party, I'm getting:
1x FrameSort/Modules/Sorting/SecureInCombat.lua:1061: attempt to call method 'SetProtected' (a nil value)
I believe this bug existed in 5.9.2a-12 and was fixed in 5.9.2a-13.
Shouldn't be happening in the latest release 6.0.3.
Feel free to re-open if it's still happening.
Doesn't seem to happen for me so I'm still trying to figure out what could be going on.
Is this in Retail or Wotlk? And FrameSort version 6.0.1?
In reply to fireymerlin: Hmm strange, I'm not sure what is wrong.
Could you try running these commands in the chat window and see if any print "bad"?
/run local name = "sArena"; local container = _G[name]; print(name, container and (container.SetProtected and "good" or "bad") or "good")
/run local name = "GladiusExPartyFrame"; local container = _G[name]; print(name, container and (container.SetProtected and "good" or "bad") or "good")
/run local name = "GladiusExArenaFrame"; local container = _G[name]; print(name, container and (container.SetProtected and "good" or "bad") or "good")
/run local name = "ElvUF_PartyGroup1"; local container = _G[name]; print(name, container and (container.SetProtected and "good" or "bad") or "good")
/run local name = "CompactPartyFrame"; local container = _G[name]; print(name, container and (container.SetProtected and "good" or "bad") or "good")
/run local name = "CompactRaidFrameContainer"; local container = _G[name]; print(name, container and (container.SetProtected and "good" or "bad") or "good")
/run local name = "CompactArenaFrame"; local container = _G[name]; print(name, container and (container.SetProtected and "good" or "bad") or "good")
Found the issue is only happening for wow vanilla/classic.
Will fix it in the next release.