mirror of
https://github.com/flibusta-apps/book_bot.git
synced 2025-12-06 15:35:35 +01:00
Fix search args
This commit is contained in:
@@ -200,7 +200,8 @@ export function getSearchArgs(ctx: Context): { query: string, page: number } | n
|
||||
return null;
|
||||
}
|
||||
|
||||
const query = ctx.callbackQuery.message.reply_to_message.text;
|
||||
const query = ctx.callbackQuery.message.reply_to_message.text
|
||||
.replaceAll("/", "");
|
||||
|
||||
return { query, page };
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user