reddit / devvit

Reddit for Developers
https://developers.reddit.com
BSD 3-Clause "New" or "Revised" License
63 stars 14 forks source link

modMail.muteConversation's numHours parameter is ignored #70

Open fsvreddit opened 4 months ago

fsvreddit commented 4 months ago

Regardless of the number passed in as numHours, the user will be muted for three days.

    await context.reddit.modMail.muteConversation({
        conversationId: "1xkchm",
        numHours: 7 * 24,
    });

The API docs state that the method accepts values 72, 168 and 672 for 3, 7 and 28 days respectively.