a fork of iceshrimp.net but a tweaked frontend to my personal liking. waow
fediverse social-media social iceshrimp fedi
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

[backend/services] Prevent favicon from being animated

+5
+5
Iceshrimp.Backend/Core/Services/DriveService.cs
··· 272 272 { 273 273 if (ident.IsAnimated) 274 274 { 275 + if (favicon) 276 + { 277 + throw GracefulException.UnprocessableEntity($"Instance icon cannot be animated."); 278 + } 279 + 275 280 logger.LogDebug("Image is animated, bypassing image processing..."); 276 281 skipImageProcessing = true; 277 282 }