diff --git a/DysonNetwork.Sphere/Sticker/StickerController.cs b/DysonNetwork.Sphere/Sticker/StickerController.cs index 0b18d21..30271ac 100644 --- a/DysonNetwork.Sphere/Sticker/StickerController.cs +++ b/DysonNetwork.Sphere/Sticker/StickerController.cs @@ -215,7 +215,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($"/cgi/drive/files/{sticker.Image.Id}"); + return Redirect($"/drive/files/{sticker.Image.Id}"); } [HttpGet("{packId:guid}/content/{id:guid}")]