mirror of
https://github.com/Steffo99/greed.git
synced 2024-11-22 05:54:18 +00:00
Possible bugfix for #19
This commit is contained in:
parent
23ccd71581
commit
dedd1695eb
2 changed files with 3 additions and 3 deletions
|
@ -92,14 +92,14 @@ conversation_admin_select_user = "Seleziona un utente su cui effettuare l'azione
|
|||
# Conversation: click below to pay for the purchase
|
||||
conversation_cart_actions = "<i>Aggiungi prodotti al carrello scorrendo in su e premendo il pulsante Aggiungi sotto" \
|
||||
" i prodotti che desideri acquistare. Quando avrai terminato, torna a questo messaggio e" \
|
||||
" premi il tasto Conferma.</i>"
|
||||
" premi il tasto Fatto.</i>"
|
||||
|
||||
# Conversation: confirm the cart contents
|
||||
conversation_confirm_cart = "🛒 Il tuo carrello contiene questi prodotti:\n" \
|
||||
"{product_list}" \
|
||||
"Totale: <b>{total_cost}</b>\n" \
|
||||
"\n" \
|
||||
"<i>Se vuoi procedere, premi il tasto Conferma sotto a questo messaggio.\n" \
|
||||
"<i>Se vuoi procedere, premi il tasto Fatto sotto a questo messaggio.\n" \
|
||||
"Per annullare, premi il tasto Annulla.</i>"
|
||||
|
||||
# Conversation: the user activated the live orders mode
|
||||
|
|
|
@ -833,7 +833,7 @@ class ChatWorker(threading.Thread):
|
|||
product.description = description if not isinstance(description, CancelSignal) else product.description
|
||||
product.price = price if not isinstance(price, CancelSignal) else product.price
|
||||
# If a photo has been sent...
|
||||
if not isinstance(photo_list, CancelSignal):
|
||||
if isinstance(photo_list, telegram.PhotoSize):
|
||||
# Find the largest photo id
|
||||
largest_photo = photo_list[0]
|
||||
for photo in photo_list[1:]:
|
||||
|
|
Loading…
Reference in a new issue