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:
@@ -1442,7 +1442,7 @@ action:
|
|||||||
data:
|
data:
|
||||||
chat_id: "{{ repeat.item }}"
|
chat_id: "{{ repeat.item }}"
|
||||||
caption: "{{ periodic_summary_formatted }}"
|
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 }}"
|
disable_web_page_preview: "{{ telegram_disable_url_preview }}"
|
||||||
chat_action: "{{ telegram_chat_action }}"
|
chat_action: "{{ telegram_chat_action }}"
|
||||||
|
|
||||||
@@ -1697,7 +1697,7 @@ action:
|
|||||||
entity_id: "{{ current_album_entity }}"
|
entity_id: "{{ current_album_entity }}"
|
||||||
data:
|
data:
|
||||||
chat_id: "{{ repeat.item }}"
|
chat_id: "{{ repeat.item }}"
|
||||||
urls: "{{ scheduled_media_urls }}"
|
assets: "{{ scheduled_media_urls }}"
|
||||||
reply_to_message_id: "{{ scheduled_reply_to_id }}"
|
reply_to_message_id: "{{ scheduled_reply_to_id }}"
|
||||||
max_group_size: "{{ max_media_per_group }}"
|
max_group_size: "{{ max_media_per_group }}"
|
||||||
chunk_delay: "{{ telegram_media_delay }}"
|
chunk_delay: "{{ telegram_media_delay }}"
|
||||||
@@ -1949,7 +1949,7 @@ action:
|
|||||||
entity_id: "{{ album_id_entities[0] }}"
|
entity_id: "{{ album_id_entities[0] }}"
|
||||||
data:
|
data:
|
||||||
chat_id: "{{ repeat.item }}"
|
chat_id: "{{ repeat.item }}"
|
||||||
urls: "{{ combined_media_urls }}"
|
assets: "{{ combined_media_urls }}"
|
||||||
reply_to_message_id: "{{ combined_reply_to_id }}"
|
reply_to_message_id: "{{ combined_reply_to_id }}"
|
||||||
max_group_size: "{{ max_media_per_group }}"
|
max_group_size: "{{ max_media_per_group }}"
|
||||||
chunk_delay: "{{ telegram_media_delay }}"
|
chunk_delay: "{{ telegram_media_delay }}"
|
||||||
@@ -2203,7 +2203,7 @@ action:
|
|||||||
entity_id: "{{ memory_current_album_entity }}"
|
entity_id: "{{ memory_current_album_entity }}"
|
||||||
data:
|
data:
|
||||||
chat_id: "{{ repeat.item }}"
|
chat_id: "{{ repeat.item }}"
|
||||||
urls: "{{ memory_media_urls }}"
|
assets: "{{ memory_media_urls }}"
|
||||||
reply_to_message_id: "{{ memory_reply_to_id }}"
|
reply_to_message_id: "{{ memory_reply_to_id }}"
|
||||||
max_group_size: "{{ max_media_per_group }}"
|
max_group_size: "{{ max_media_per_group }}"
|
||||||
chunk_delay: "{{ telegram_media_delay }}"
|
chunk_delay: "{{ telegram_media_delay }}"
|
||||||
@@ -2445,7 +2445,7 @@ action:
|
|||||||
entity_id: "{{ album_id_entities[0] }}"
|
entity_id: "{{ album_id_entities[0] }}"
|
||||||
data:
|
data:
|
||||||
chat_id: "{{ repeat.item }}"
|
chat_id: "{{ repeat.item }}"
|
||||||
urls: "{{ memory_comb_media_urls }}"
|
assets: "{{ memory_comb_media_urls }}"
|
||||||
reply_to_message_id: "{{ memory_comb_reply_to_id }}"
|
reply_to_message_id: "{{ memory_comb_reply_to_id }}"
|
||||||
max_group_size: "{{ max_media_per_group }}"
|
max_group_size: "{{ max_media_per_group }}"
|
||||||
chunk_delay: "{{ telegram_media_delay }}"
|
chunk_delay: "{{ telegram_media_delay }}"
|
||||||
@@ -2849,7 +2849,7 @@ action:
|
|||||||
entity_id: "{{ album_id_entities[0] if album_id_entities | length > 0 else '' }}"
|
entity_id: "{{ album_id_entities[0] if album_id_entities | length > 0 else '' }}"
|
||||||
data:
|
data:
|
||||||
chat_id: "{{ current_chat_id }}"
|
chat_id: "{{ current_chat_id }}"
|
||||||
urls: "{{ media_urls }}"
|
assets: "{{ media_urls }}"
|
||||||
reply_to_message_id: "{{ reply_to_message_id }}"
|
reply_to_message_id: "{{ reply_to_message_id }}"
|
||||||
max_group_size: "{{ max_media_per_group }}"
|
max_group_size: "{{ max_media_per_group }}"
|
||||||
chunk_delay: "{{ telegram_media_delay }}"
|
chunk_delay: "{{ telegram_media_delay }}"
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"version": "1.31.0"
|
"version": "1.31.1"
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user