[backend/api] Fix drive folder endpoint
This commit is contained in:
parent
85e24e03f1
commit
805393b3e5
1 changed files with 2 additions and 2 deletions
|
@ -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,
|
||||||
|
|
Loading…
Add table
Reference in a new issue