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] Trim UserPublicKey before inserting into database

+2 -2
+2 -2
Iceshrimp.Backend/Core/Services/UserService.cs
··· 205 205 { 206 206 UserId = user.Id, 207 207 KeyId = actor.PublicKey.Id, 208 - KeyPem = actor.PublicKey.PublicKey 208 + KeyPem = actor.PublicKey.PublicKey.Trim() 209 209 }; 210 210 211 211 try ··· 506 506 var insert = key.KeyId == null!; 507 507 508 508 key.KeyId = actor.PublicKey.Id; 509 - key.KeyPem = actor.PublicKey.PublicKey; 509 + key.KeyPem = actor.PublicKey.PublicKey.Trim(); 510 510 511 511 if (insert) db.Add(key); 512 512 else db.Update(key);