🐛 Fix sticker open on gateway

This commit is contained in:
2025-08-07 13:14:45 +08:00
parent d13e18534f
commit f1ea7c1c5a

View File

@@ -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}")]