Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion cogs/dpy.py
Original file line number Diff line number Diff line change
Expand Up @@ -540,7 +540,8 @@ async def solved(self, ctx: GuildContext):
)
await self.mark_as_solved(ctx.channel, ctx.channel.owner or ctx.author)
elif confirm is None:
await ctx.send('Timed out waiting for a response. Not marking as solved.')
if not ctx.channel.locked:
await ctx.send('Timed out waiting for a response. Not marking as solved.')
else:
await ctx.send('Not marking as solved.')

Expand Down