From 0d629591ed8b491e6e3560f72b12d737e4f3922f Mon Sep 17 00:00:00 2001 From: Cody Robibero Date: Mon, 20 Jul 2026 20:15:05 -0400 Subject: [PATCH] Remove comments about JSON error handling Removed comments explaining error handling for malformed JSON during backup. --- .../FullSystemBackup/BackupService.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/Jellyfin.Server.Implementations/FullSystemBackup/BackupService.cs b/Jellyfin.Server.Implementations/FullSystemBackup/BackupService.cs index 765f8bfb73..7c10a5dc77 100644 --- a/Jellyfin.Server.Implementations/FullSystemBackup/BackupService.cs +++ b/Jellyfin.Server.Implementations/FullSystemBackup/BackupService.cs @@ -364,9 +364,6 @@ public class BackupService : IBackupService { while (true) { - // Reading the next row can itself throw, e.g. when a column contains malformed - // JSON (see https://github.com/jellyfin/jellyfin/issues/17216). Catch that here so a single - // corrupt row is skipped, logged for manual follow-up, and does not abort the whole backup. bool hasNext; try {