We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4333184 commit a55799aCopy full SHA for a55799a
1 file changed
src/telegram/bot/download.ts
@@ -53,9 +53,9 @@ downloadDp.onNewMessage(async (msg) => {
53
})
54
55
const settings = await getPeerSettings(msg.chat)
56
- if (settings.preferredOutput) {
+ if (settings.preferredOutput || msg.chat.type !== "user") {
57
const res = await onOutputSelected(
58
- settings.preferredOutput,
+ settings.preferredOutput || "auto",
59
req.result,
60
args => msg.client.editMessage({ ...args, message: reply }),
61
{ e, t },
0 commit comments