[backend/api] Fix drive folder endpoint

This commit is contained in:
pancakes 2025-01-20 15:24:57 +10:00 committed by Laura Hausmann
parent 85e24e03f1
commit 805393b3e5
No known key found for this signature in database
GPG key ID: D044E84C5BE01605

View file

@ -323,8 +323,8 @@ public class DriveController(
.Select(p => new DriveFileResponse
{
Id = p.Id,
Url = p.AccessUrl,
ThumbnailUrl = p.ThumbnailAccessUrl,
Url = p.RawAccessUrl,
ThumbnailUrl = p.RawThumbnailAccessUrl,
Filename = p.Name,
ContentType = p.Type,
Sensitive = p.IsSensitive,