mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
Order cerca by id
This commit is contained in:
parent
1c56e9f14b
commit
0a46cbeade
1 changed files with 1 additions and 1 deletions
|
@ -305,7 +305,7 @@ def cmd_cerca(bot: Bot, update: Update):
|
|||
bot.send_message(update.message.chat.id, s(strings.DIARIO_SEARCH.ERRORS.INVALID_SYNTAX))
|
||||
return
|
||||
text = text.replace('%', '\\%').replace('_', '\\_')
|
||||
entries = session.query(db.Diario).filter(db.Diario.text.ilike('%'+text+'%')).all()
|
||||
entries = session.query(db.Diario).filter(db.Diario.text.ilike('%'+text+'%')).order_by(db.Diario.id).all()
|
||||
msg = f"Risultati della ricerca di {text}:\n"
|
||||
for entry in entries[:5]:
|
||||
msg += f'<a href="https://ryg.steffo.eu/diario#entry-{entry.id}">#{entry.id}</a> di {entry.author or "Anonimo"}\n{entry.text}\n\n'
|
||||
|
|
Loading…
Reference in a new issue