We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When launching game with retail expension (The War Within v11.0.2 - 56513 - x64 - Sep 5 2024) we got LUA error on addon initialization.
Message: Interface/AddOns/RaiderIO/core.lua:13339: attempt to call global 'InterfaceOptions_AddCategory' (a nil value) Time: Tue Sep 17 18:02:11 2024 Count: 1 Stack: Interface/AddOns/RaiderIO/core.lua:13339: attempt to call global 'InterfaceOptions_AddCategory' (a nil value) [string "@Interface/AddOns/RaiderIO/core.lua"]:13339: in function `CreateInterfacePanel' [string "@Interface/AddOns/RaiderIO/core.lua"]:13439: in main chunk
Change line 13339 :
InterfaceOptions_AddCategory(panel, true)
By :
if InterfaceOptions_AddCategory then InterfaceOptions_AddCategory(panel, true) else local category, layout = _G.Settings.RegisterCanvasLayoutCategory(panel, panel.name) _G.Settings.RegisterAddOnCategory(category) end
The text was updated successfully, but these errors were encountered:
Something looks odd, because the error occurs on older version of the addon, which was fixed some weeks ago.
It might be that something went wrong with addon updating, or the RIO client failed to update the addon, failing to locale the game installation, etc.
If you could manually control and check that the addon is updated, the error should then go away.
Sorry, something went wrong.
No branches or pull requests
Description :
When launching game with retail expension (The War Within v11.0.2 - 56513 - x64 - Sep 5 2024) we got LUA error on addon initialization.
Error stack :
Suggestion :
Change line 13339 :
By :
The text was updated successfully, but these errors were encountered: