a fork of iceshrimp.net but a tweaked frontend to my personal liking. waow
fediverse social-media social iceshrimp fedi
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

[backend/core] Correctly populate the note field in renote notifications

+1 -1
+1 -1
Iceshrimp.Backend/Core/Services/NotificationService.cs
··· 262 262 { 263 263 Id = IdHelpers.GenerateSlowflakeId(), 264 264 CreatedAt = DateTime.UtcNow, 265 - Note = note, 265 + Note = note.IsQuote ? note : note.Renote, 266 266 Notifiee = note.Renote.User, 267 267 Notifier = note.User, 268 268 Type = note.IsQuote ? Notification.NotificationType.Quote : Notification.NotificationType.Renote