diff --git a/strings.py b/strings.py
index d30ef6e..ee7fb10 100644
--- a/strings.py
+++ b/strings.py
@@ -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 = "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."
+ " premi il tasto Fatto."
# Conversation: confirm the cart contents
conversation_confirm_cart = "🛒 Il tuo carrello contiene questi prodotti:\n" \
"{product_list}" \
"Totale: {total_cost}\n" \
"\n" \
- "Se vuoi procedere, premi il tasto Conferma sotto a questo messaggio.\n" \
+ "Se vuoi procedere, premi il tasto Fatto sotto a questo messaggio.\n" \
"Per annullare, premi il tasto Annulla."
# Conversation: the user activated the live orders mode
diff --git a/worker.py b/worker.py
index 837160b..1cab6bd 100644
--- a/worker.py
+++ b/worker.py
@@ -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:]: