diff --git a/Iceshrimp.Backend/Core/Database/Tables/Note.cs b/Iceshrimp.Backend/Core/Database/Tables/Note.cs index 95691423..88daf498 100644 --- a/Iceshrimp.Backend/Core/Database/Tables/Note.cs +++ b/Iceshrimp.Backend/Core/Database/Tables/Note.cs @@ -269,7 +269,8 @@ public class Note : IEntity [NotMapped] [Projectable] - public bool IsQuote => (RenoteId != null || Renote != null) && (Text != null || HasPoll || FileIds.Count > 0); + public bool IsQuote => (RenoteId != null || Renote != null) && + (Text != null || Cw != null || HasPoll || FileIds.Count > 0); [ForeignKey(nameof(UserId))] [InverseProperty(nameof(Tables.User.Notes))]