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/masto-client] Fix exception during initial mastodon iceshrimp interop session creation

+1 -1
+1 -1
Iceshrimp.Backend/Controllers/Mastodon/AccountController.cs
··· 142 142 var webSession = await db.OauthTokens 143 143 .Where(p => p.Id == token.Id) 144 144 .Select(p => p.WebSession) 145 - .FirstAsync(); 145 + .FirstOrDefaultAsync(); 146 146 147 147 if (webSession != null) return webSession.Token; 148 148