Nice little directory browser :D
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix/Files: properly encode href (forgot to ww, broke on spaces and #es)

+5 -1
+5 -1
Components/Pages/api/Files.razor
··· 187 187 TimeUnix = $"{baseFsi.LastWriteTime.ToUniversalTime().Subtract(DateTime.UnixEpoch).TotalSeconds:N0}"; 188 188 Href = IsBad 189 189 ? null 190 - : System.IO.Path.Join(currentPath, Name); 190 + : String.Join('/', 191 + System.IO.Path.Join(currentPath, Name) 192 + .Split('/') 193 + .Select(Uri.EscapeDataString) 194 + ); 191 195 Trail = IsFile ? null : '/'; 192 196 } 193 197 }