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.

[frontend] Fix implicit PaginationQuery to QueryString conversion

Turns out QueryString.Add() is a pure method (despite not having the [Pure] attribute)

+3 -3
+3 -3
Iceshrimp.Frontend/Core/Miscellaneous/PaginationQuery.cs
··· 15 15 var query = new QueryString(); 16 16 17 17 if (MaxId != null) 18 - query.Add("max_id", MaxId); 18 + query = query.Add("max_id", MaxId); 19 19 if (MinId != null) 20 - query.Add("min_id", MinId); 20 + query = query.Add("min_id", MinId); 21 21 if (Limit.HasValue) 22 - query.Add("limit", Limit.Value.ToString()); 22 + query = query.Add("limit", Limit.Value.ToString()); 23 23 24 24 return query; 25 25 }