Skip to content

Diun v4.28 to v4.29

Telegram chatdIDs and chatIDsFile attributes change

The chatIDs attribute has changed from a list of integers to a list of strings. If you are using Telegram notifications, you need to update your configuration file:

v4.1

notif:
  telegram:
    token: aabbccdd:11223344
    chatIDs:
      - 123456789
      - 987654321

v4.29

notif:
  telegram:
    token: aabbccdd:11223344
    chatIDs:
      - "123456789"
      - "987654321"

The same applies for the chatIDsFile attribute content:

v4.1

[123456789,987654321]

v4.29

["123456789","987654321"]

More information on Telegram notifications page.


Last update: 2024-12-20 17:18:56
Created: 2024-12-20 17:18:56