AckisRecipeList:
Jim-Bim [02-24-09 - 23:27]
AckisRecipeList:
- fixed popup option (profile nil errors)
diff --git a/ARLFrame.lua b/ARLFrame.lua
index cbac1cf..78f4551 100644
--- a/ARLFrame.lua
+++ b/ARLFrame.lua
@@ -1067,13 +1067,13 @@ local function RecipeList_Update()
local showpopup = false
- if (addon.profile.db.hidepopup ~= true) then
+ if (addon.db.profile.hidepopup ~= true) then
showpopup = true
end
-- If we haven't run this before we'll show pop-ups for the first time.
- if (addon.profile.db.addonversion ~= addonversion) then
- addon.profile.db.addonversion = addonversion
+ if (addon.db.profile.addonversion ~= addonversion) then
+ addon.db.profile.addonversion = addonversion
showpopup = true
end