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/federation] Fix JSON deserialization errors when encountering date-like LDValueObject<string> properties

+5
+5
Iceshrimp.Backend/Core/Federation/ActivityStreams/Types/LDValueObject.cs
··· 159 159 return succeeded ? result : null; 160 160 } 161 161 162 + if (obj?.Value is DateTime t && objectType == typeof(string)) 163 + { 164 + return t.ToStringIso8601Like(); 165 + } 166 + 162 167 if (objectType == typeof(uint?)) 163 168 { 164 169 var val = obj?.Value;