Hekili Priority Helper

Hekili Priority Helper

44M Downloads

Hekili.DB.profile.packs[pack].warnings is nil on a brand new action list

KOVIKO opened this issue ยท 1 comments

commented

Options.lua:5856 throws an error when creating a new priority list and attempting to navigate to the "Profile" tab. Replacing nil with an empty string seems to solve the issue.

- return "|cFFFFD100Import Log|r\n" .. ( p.warnings ) .. "\n\n"
+ return "|cFFFFD100Import Log|r\n" .. ( p.warnings or "" ) .. "\n\n"
commented

This is resolved.