Hey there,
this is a very trivial bug. Open GetDKPConfig\GetDKPConfig.lua, scroll down to the bottom and replace function debug(msg1,....) with the following:
Code:
function debug(msg1,msg2,msg3,msg4,msg5,msg6,msg7)
if(msg1 ~= nil) then
GDKP_show(msg1)
end
if(msg2 ~= nil) then
GDKP_show(msg2)
end
if(msg3 ~= nil) then
GDKP_show(msg3)
end
if(msg4 ~= nil) then
GDKP_show(msg4)
end
if(msg5 ~= nil) then
GDKP_show(msg5)
end
if(msg6 ~= nil) then
GDKP_show(msg6)
end
if(msg7 ~= nil) then
GDKP_show(msg7)
end
end
The maintainer of this addon should check wether or not the variables are NULL and call the GDKP_show method only if string != null.
This is just a quick and dirty workaround, but I dont expect any problems by applying this change to the file until a newer version of the addon is available.
Regards, Garth