Fix reply to message data access

This commit is contained in:
2026-01-31 16:04:48 +03:00
parent 182e7cccfb
commit 3732055720
2 changed files with 4 additions and 4 deletions

View File

@@ -1223,7 +1223,7 @@ action:
# Extract message ID for replies # Extract message ID for replies
- variables: - variables:
reply_to_message_id: "{{ telegram_text_response.message_id | default(0) | int }}" reply_to_message_id: "{{ telegram_text_response[album_id_entities[0]].message_id | default(0) | int }}"
# Send media if we have URLs # Send media if we have URLs
- choose: - choose:
@@ -1241,8 +1241,8 @@ action:
data: data:
title: "Immich Album Watcher - Reply To Debug" title: "Immich Album Watcher - Reply To Debug"
message: > message: >
**Reply To Message ID Debug:** **Reply To Message Debug:**
- Value: {{ reply_to_message_id }} - Value: {{ telegram_text_response }}
- service: immich_album_watcher.send_telegram_notification - service: immich_album_watcher.send_telegram_notification
response_variable: telegram_media_response response_variable: telegram_media_response

View File

@@ -1,3 +1,3 @@
{ {
"version": "1.14.8" "version": "1.14.9"
} }