[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 .Select(p => new DriveFileResponse
{ {
Id = p.Id, Id = p.Id,
Url = p.AccessUrl, Url = p.RawAccessUrl,
ThumbnailUrl = p.ThumbnailAccessUrl, ThumbnailUrl = p.RawThumbnailAccessUrl,
Filename = p.Name, Filename = p.Name,
ContentType = p.Type, ContentType = p.Type,
Sensitive = p.IsSensitive, Sensitive = p.IsSensitive,