diff --git a/DysonNetwork.Sphere/Sticker/StickerController.cs b/DysonNetwork.Sphere/Sticker/StickerController.cs index 5fb15a7..c548c6e 100644 --- a/DysonNetwork.Sphere/Sticker/StickerController.cs +++ b/DysonNetwork.Sphere/Sticker/StickerController.cs @@ -213,7 +213,7 @@ public class StickerController(AppDatabase db, StickerService st, FileService.Fi var sticker = await st.LookupStickerByIdentifierAsync(identifier); if (sticker?.Image is null) return NotFound(); - return Redirect($"/drive/files/{sticker.Image.Id}"); + return Redirect($"/drive/files/{sticker.Image.Id}?original=true"); } [HttpGet("{packId:guid}/content/{id:guid}")]