View Single Post
01/30/23, 09:05 AM   #7
Baertram
Super Moderator
 
Baertram's Avatar
WoWInterface Super Mod
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 4,989
Found the problem:
The entry I had marked in my last post
Code:
local allTrialSetsDropdownCallback = { name = subMenuEntryAllSets, filterCallback = GetFilterCallbackForSets( allSetsConstantId ) }
is missing the correct "subTable" so that the indices are correct:

Lua Code:
  1. local allTrialSetsDropdownCallback = { { name = subMenuEntryAllSets, filterCallback = GetFilterCallbackForSets( allSetsConstantId ) } }

This was wrong in my filter plguin already but did not raise any error/worked as intended.
  Reply With Quote