View Single Post
01/29/23, 04:21 PM   #2
Baertram
Super Moderator
 
Baertram's Avatar
WoWInterface Super Mod
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 4,989
The error says it tries to index a function value so somehow a table is expected but it got a function instead.
The error also says its at your new addon file at line 108 where something was defined as index, which is filterCallback (does not sound like an index :-) more like a function )

existingSubfilterCallbacksTableAtGroup = [table:7]{name = "TrialSetsAll"},
...
user:/AddOns/AF_TrialSetFilters/AF_TrialSetFilters.lua:108

Check your new plugin addons code if you have accidently added a wrong , or changed a parameter of the addonInformation table, or the callback findings table, which you register as new filter to AF.
Did you miss to change a table key to your new names and it still says "MonsterSets" or similar maybe?

If you cannot find anything please post you complete zip file containing the txt and lua files of your plugin here so I can have a look and test with my AF_FCOMonsterSets plugin myself. Maybe there is a bug in the AF plugin duplicates check that needs to be fixed in AF base code.

Last edited by Baertram : 01/29/23 at 04:31 PM.
  Reply With Quote