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] Code cleanup

+1 -1
+1 -1
Iceshrimp.Backend/Core/Helpers/IdHelpers.cs
··· 8 8 9 9 public static string GenerateSnowflakeId(DateTime? createdAt = null) 10 10 { 11 - if (createdAt?.Kind is not null and not DateTimeKind.Utc) 11 + if (createdAt is { Kind: not DateTimeKind.Utc }) 12 12 createdAt = createdAt.Value.ToUniversalTime(); 13 13 14 14 createdAt ??= DateTime.UtcNow;