[backend] Fix build
This commit is contained in:
parent
cb28560dcf
commit
fbb7140d01
1 changed files with 5 additions and 4 deletions
|
@ -97,10 +97,11 @@ public class NoteRenderer(
|
||||||
.Where(f => p.FileIds.Contains(f.Id))
|
.Where(f => p.FileIds.Contains(f.Id))
|
||||||
.Select(f => new PreviewAttachment
|
.Select(f => new PreviewAttachment
|
||||||
{
|
{
|
||||||
MimeType = f.Type,
|
MimeType = f.Type,
|
||||||
Url = f.AccessUrl,
|
Url = f.AccessUrl,
|
||||||
Name = f.Name,
|
Name = f.Name,
|
||||||
Alt = f.Comment
|
Alt = f.Comment,
|
||||||
|
Sensitive = f.IsSensitive
|
||||||
})
|
})
|
||||||
.ToList());
|
.ToList());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue