From f36a32773ab3b0df9a5a6b523bb48f6ab3c763c3 Mon Sep 17 00:00:00 2001 From: Harvey Tindall Date: Fri, 28 Nov 2025 17:10:38 +0000 Subject: [PATCH] jellyseerr: fix background daemon auto import of telegram ChatID fix was done in the TPS implementation but not in the daemon. --- jellyseerr-d.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jellyseerr-d.go b/jellyseerr-d.go index c750419..b82aaf3 100644 --- a/jellyseerr-d.go +++ b/jellyseerr-d.go @@ -51,7 +51,7 @@ func (app *appContext) SynchronizeJellyseerrUser(jfID string) { chatID, _ := strconv.ParseInt(notif.TelegramChatID, 10, 64) if ok && tgUser.ChatID != 0 && chatID != tgUser.ChatID { u, _ := app.storage.GetTelegramKey(jfID) - contactMethods[jellyseerr.FieldTelegram] = u.ChatID + contactMethods[jellyseerr.FieldTelegram] = strconv.FormatInt(u.ChatID, 10) contactMethods[jellyseerr.FieldTelegramEnabled] = tgUser.Contact } }