Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/bf4829a38ce6b393c2bbab258c4a7ebe5ee33aba You should set ROOT_URL correctly, otherwise the web may not work correctly.

Remove redundant statement

pull/5112/head
Bond_009 4 years ago
parent 80e22d9670
commit bf4829a38c

@ -33,8 +33,7 @@ namespace MediaBrowser.Common.Extensions
int n = list.Count;
while (n > 1)
{
n--;
int k = rng.Next(n + 1);
int k = rng.Next(n--);
T value = list[k];
list[k] = list[n];
list[n] = value;

Loading…
Cancel
Save