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/components] Adjust fetch priority for attachments

authored by

Lilian and committed by
Laura Hausmann
9d3d8bf6 1e680bd3

+2 -2
+1 -1
Iceshrimp.Frontend/Components/AttachmentComponent.razor
··· 4 4 <div class="wrapper" @onclick="Open" @onclick:stopPropagation="true"> 5 5 @if (Attachment.ContentType.StartsWith("image")) 6 6 { 7 - <img class="attachment @(BlurImage ? "blur-image" : "")" src="@Attachment.Url" alt="@Attachment.AltText"/> 7 + <img class="attachment @(BlurImage ? "blur-image" : "")" src="@Attachment.Url" alt="@Attachment.AltText" fetchpriority="low"/> 8 8 } 9 9 // else if (Attachment.ContentType == "audio/x-mod") 10 10 // {
+1 -1
Iceshrimp.Frontend/Components/AttachmentView.razor
··· 22 22 @foreach (var element in Attachments) 23 23 { 24 24 <div class="container" @ref="@Ref"> 25 - <img class="attachment" src="@element.Url" alt="@element.AltText"/> 25 + <img class="attachment" src="@element.Url" alt="@element.AltText" fetchpriority="low"/> 26 26 </div> 27 27 } 28 28 </div>