nextcord / nextcord-ext-menus

A nextcord menu and pagination extension that makes working with reaction menus and button component menus a bit easier
https://menus.docs.nextcord.dev
MIT License
26 stars 9 forks source link

Menus break in threads #28

Closed Skelmis closed 2 years ago

Skelmis commented 2 years ago
        pages = menus.ButtonMenuPages(
            source=EvalPageSource(bot, result, ctx.author),
            clear_buttons_after=True,
        )
        await pages.start(ctx)

Will throw the following error when used in a thread. AttributeError: 'Thread' object has no attribute '_overwrites'

DenverCoder1 commented 2 years ago

I can't seem to reproduce this issue.

All examples of menus I have tried are working in threads.

DenverCoder1 commented 2 years ago

Has this been resolved?