diff --git a/Iceshrimp.Backend/Core/Services/DriveService.cs b/Iceshrimp.Backend/Core/Services/DriveService.cs index eb4b77ff..b490537b 100644 --- a/Iceshrimp.Backend/Core/Services/DriveService.cs +++ b/Iceshrimp.Backend/Core/Services/DriveService.cs @@ -149,6 +149,8 @@ public class DriveService( { // Generate thumbnail var thumbnailImage = image.Clone(); + thumbnailImage.Metadata.ExifProfile = null; + thumbnailImage.Metadata.XmpProfile = null; if (Math.Max(image.Size.Width, image.Size.Height) > 1000) thumbnailImage.Mutate(p => p.Resize(image.Width > image.Height ? new Size(1000, 0)