Tercioo / RaidAssist

AddOn for World of Warcraft, help raid leaders organize their raids.
GNU General Public License v3.0
1 stars 2 forks source link

Follower dungeon bug #17

Open EFGearman opened 6 months ago

EFGearman commented 6 months ago

Message: Interface/AddOns/RaidAssist/plugins/notes.lua:1062: attempt to index field '?' (a nil value) Time: Sat Mar 23 16:51:06 2024 Count: 3 Stack: Interface/AddOns/RaidAssist/plugins/notes.lua:1062: attempt to index field '?' (a nil value)

Locals:

The bug seems to be that fileName (off of GetRaidRosterInfo) is nil for followers.

I think the fix would be on line 1055, changing:

if (name) then

to:

if (name and filename) then