[BUG]: Communites and Settings error
HereticalHermit opened this issue ยท 0 comments
WoW Version
Retail
AddOn skin name
Skinner
Describe the bug
This happens on login.
38x AceLocale-3.0-6: Skinner: Missing entry for 'Communities'
38x AceLocale-3.0-6: Skinner: Missing entry for 'Settings'
[string "@Skinner/Core/UtilFuncs.lua"]:1343: in function ?' [string "@Skinner/Core/Options.lua"]:1338: in function <Skinner/Core/Options.lua:93> [string "=(tail call)"]: ? [string "=[C]"]: in function
xpcall'
[string "@Skinner/Core/UtilFuncs.lua"]:316: in function <Skinner/Core/UtilFuncs.lua:310>
[string "=(tail call)"]: ?
[string "@Skinner/Core/Skinner.lua"]:100: in function <Skinner/Core/Skinner.lua:46>
[string "=[C]"]: ?
I was able to stop the alert with a temp fix - I updated my lua code locally:
in Options.lua
lines 1286-87
--["Communities"] = self.isRtl or self.isClscERAPTR and {suff = "UI"} or nil,
["Communities"] = self.isRtl and {suff = "UI"} or nil,
lines 1328-29
--["Settings"] = self.isRtl or self.isClsc or self.isClscERAPTR and {desc = "Options"} or nil,
["Settings"] = not self.isClscERA and {desc = "Options"} or nil,
Not sure if that helps pinpoint the issue, but wanted to raise it for you. Thanks!