View Single Post
08/17/20, 02:13 PM   #4
Marazota
AddOn Author - Click to view addons
Join Date: Sep 2015
Posts: 260
in the addon itself i changed this

Code:
-- LOCAL FUNCTIONS
-----------------------------------------------------------------------------------------------------------------------------------
local EH = LibStub:GetLibrary ( "LibEventHandler-1.1" )
local menu = LibStub:GetLibrary ( "LibCustomMenu" )
local LAM = LibStub:GetLibrary( "LibAddonMenu-2.0" )
to this

Code:
-- LOCAL FUNCTIONS
-----------------------------------------------------------------------------------------------------------------------------------
local EH = LibEventHandler
local menu = LibCustomMenu
local LAM = LibAddonMenu
and this

Code:
self.async = LibStub( "LibAsync" ):Create ( self.name )
to this

Code:
self.async = LibAsync:Create ( self.name )
  Reply With Quote