Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/7958d8b3803ec3455d016ad0d8e30bef5690888c
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
10 additions and
5 deletions
@ -29,8 +29,11 @@ namespace MediaBrowser.ServerApplication.Native
static extern IntPtr OpenThread ( ThreadAccess dwDesiredAccess , bool bInheritHandle , uint dwThreadId ) ;
[DllImport("kernel32.dll")]
static extern uint SuspendThread ( IntPtr hThread ) ;
[DllImport("kernel32.dll")]
static extern int ResumeThread ( IntPtr hThread ) ;
[DllImport("kernel32.dll")]
static extern int ResumeThread ( IntPtr hThread ) ;
[DllImport("kernel32.dll")]
[return: MarshalAs(UnmanagedType.Bool)]
public static extern bool CloseHandle ( IntPtr hThread ) ;
public static void Suspend ( this Process process )
{
@ -41,7 +44,8 @@ namespace MediaBrowser.ServerApplication.Native
{
break ;
}
SuspendThread ( pOpenThread ) ;
SuspendThread ( pOpenThread ) ;
CloseHandle ( pOpenThread ) ;
}
}
public static void Resume ( this Process process )
@ -52,8 +56,9 @@ namespace MediaBrowser.ServerApplication.Native
if ( pOpenThread = = IntPtr . Zero )
{
break ;
}
ResumeThread ( pOpenThread ) ;
}
ResumeThread ( pOpenThread ) ;
CloseHandle ( pOpenThread ) ;
}
}
public static void Print ( this Process process )