Rename urls to assets in send_telegram_notification calls

Service parameter was renamed from 'urls' to 'assets'.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-02-05 02:41:12 +03:00
parent 27ff2ae8f0
commit e041f468ca
2 changed files with 7 additions and 7 deletions

View File

@@ -1442,7 +1442,7 @@ action:
data:
chat_id: "{{ repeat.item }}"
caption: "{{ periodic_summary_formatted }}"
urls: "{{ [{'url': periodic_summary_image_url, 'type': 'photo'}] if periodic_summary_image_url | length > 0 else [] }}"
assets: "{{ [{'url': periodic_summary_image_url, 'type': 'photo'}] if periodic_summary_image_url | length > 0 else [] }}"
disable_web_page_preview: "{{ telegram_disable_url_preview }}"
chat_action: "{{ telegram_chat_action }}"
@@ -1697,7 +1697,7 @@ action:
entity_id: "{{ current_album_entity }}"
data:
chat_id: "{{ repeat.item }}"
urls: "{{ scheduled_media_urls }}"
assets: "{{ scheduled_media_urls }}"
reply_to_message_id: "{{ scheduled_reply_to_id }}"
max_group_size: "{{ max_media_per_group }}"
chunk_delay: "{{ telegram_media_delay }}"
@@ -1949,7 +1949,7 @@ action:
entity_id: "{{ album_id_entities[0] }}"
data:
chat_id: "{{ repeat.item }}"
urls: "{{ combined_media_urls }}"
assets: "{{ combined_media_urls }}"
reply_to_message_id: "{{ combined_reply_to_id }}"
max_group_size: "{{ max_media_per_group }}"
chunk_delay: "{{ telegram_media_delay }}"
@@ -2203,7 +2203,7 @@ action:
entity_id: "{{ memory_current_album_entity }}"
data:
chat_id: "{{ repeat.item }}"
urls: "{{ memory_media_urls }}"
assets: "{{ memory_media_urls }}"
reply_to_message_id: "{{ memory_reply_to_id }}"
max_group_size: "{{ max_media_per_group }}"
chunk_delay: "{{ telegram_media_delay }}"
@@ -2445,7 +2445,7 @@ action:
entity_id: "{{ album_id_entities[0] }}"
data:
chat_id: "{{ repeat.item }}"
urls: "{{ memory_comb_media_urls }}"
assets: "{{ memory_comb_media_urls }}"
reply_to_message_id: "{{ memory_comb_reply_to_id }}"
max_group_size: "{{ max_media_per_group }}"
chunk_delay: "{{ telegram_media_delay }}"
@@ -2849,7 +2849,7 @@ action:
entity_id: "{{ album_id_entities[0] if album_id_entities | length > 0 else '' }}"
data:
chat_id: "{{ current_chat_id }}"
urls: "{{ media_urls }}"
assets: "{{ media_urls }}"
reply_to_message_id: "{{ reply_to_message_id }}"
max_group_size: "{{ max_media_per_group }}"
chunk_delay: "{{ telegram_media_delay }}"

View File

@@ -1,3 +1,3 @@
{
"version": "1.31.0"
"version": "1.31.1"
}