🐛 Stickers uses original file

This commit is contained in:
2025-08-10 22:32:23 +08:00
parent ea8158cb50
commit 8474fc7160

View File

@@ -213,7 +213,7 @@ public class StickerController(AppDatabase db, StickerService st, FileService.Fi
var sticker = await st.LookupStickerByIdentifierAsync(identifier); var sticker = await st.LookupStickerByIdentifierAsync(identifier);
if (sticker?.Image is null) return NotFound(); 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}")] [HttpGet("{packId:guid}/content/{id:guid}")]