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
- 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
- choose:
@@ -1241,8 +1241,8 @@ action:
data:
title: "Immich Album Watcher - Reply To Debug"
message: >
**Reply To Message ID Debug:**
- Value: {{ reply_to_message_id }}
**Reply To Message Debug:**
- Value: {{ telegram_text_response }}
- service: immich_album_watcher.send_telegram_notification
response_variable: telegram_media_response

View File

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