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/pages] Fix icon paths

+5 -5
+1 -1
Iceshrimp.Backend/Controllers/Web/InstanceController.cs
··· 147 147 } 148 148 149 149 // This is only used to set the icon for the frontend 150 - [HttpGet("/instance-icon")] 150 + [HttpGet("/favicon.png")] 151 151 [ProducesResults(HttpStatusCode.Redirect)] 152 152 public async Task<RedirectResult> GetInstanceIcon() 153 153 {
+1 -1
Iceshrimp.Backend/Pages/Shared/ErrorPage.cshtml
··· 18 18 @* ReSharper disable Html.PathError *@ 19 19 <link rel="stylesheet" href="~/Iceshrimp.Backend.styles.css"/> 20 20 <link rel="stylesheet" href="~/css/default.css"/> 21 - <link rel="icon" type="image/png" href="~/_content/Iceshrimp.Assets.Branding/favicon.png"/> 21 + <link rel="icon" type="image/png" href="/favicon.png"/> 22 22 @* ReSharper restore Html.PathError *@ 23 23 <style> 24 24 .footer {
+1 -1
Iceshrimp.Backend/Pages/Shared/FrontendSPA.cshtml
··· 14 14 <link rel="stylesheet" href="~/css/app.css"/> 15 15 <link rel="stylesheet" href="~/_content/Iceshrimp.Assets.PhosphorIcons/css/ph-regular.css"/> 16 16 <link rel="stylesheet" href="~/_content/Iceshrimp.Assets.PhosphorIcons/css/ph-fill.css"/> 17 - <link rel="icon" href="instance-icon"> 17 + <link rel="icon" type="image/png" href="/favicon.png"> 18 18 <link rel="stylesheet" href="~/Iceshrimp.Frontend.styles.css"/> 19 19 <link href="manifest.webmanifest" rel="manifest"/> 20 20 <link rel="apple-touch-icon" sizes="512x512" href="~/_content/Iceshrimp.Assets.Branding/512.png"/>
+1 -1
Iceshrimp.Backend/Pages/Shared/RootComponent.razor
··· 17 17 <meta name="viewport" content="width=device-width, initial-scale=1.0"> 18 18 <VersionedLink rel="stylesheet" href="/Iceshrimp.Backend.styles.css"/> 19 19 <VersionedLink rel="stylesheet" href="/css/default.css"/> 20 - <link rel="icon" href="instance-icon"> 20 + <link rel="icon" type="image/png" href="/favicon.png"> 21 21 <HeadOutlet/> 22 22 <PageTitle>@(_instanceName ?? "Iceshrimp.NET")</PageTitle> 23 23 </head>
+1 -1
Iceshrimp.Backend/Pages/Shared/_Layout.cshtml
··· 12 12 @* ReSharper disable Html.PathError *@ 13 13 <link rel="stylesheet" href="~/Iceshrimp.Backend.styles.css"/> 14 14 <link rel="stylesheet" href="~/css/default.css"/> 15 - <link rel="icon" type="image/png" href="~/_content/Iceshrimp.Assets.Branding/favicon.png"/> 15 + <link rel="icon" type="image/png" href="/favicon.png"/> 16 16 @* ReSharper restore Html.PathError *@ 17 17 @await RenderSectionAsync("styles", false) 18 18 @await RenderSectionAsync("head", false)