Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/f2f917ccee6bbabe155630ff7446c071c3228712
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
2 additions and
4 deletions
@ -46,9 +46,7 @@ namespace MediaBrowser.Server.Implementations.LiveTv.Listings.Emby
public async Task < List < NameIdPair > > GetLineups ( string country , string location )
{
// location = postal code
var path = await GetResponse < String > ( "https://data.emby.media/service/lineups?postalCode=" + location ) . ConfigureAwait ( false ) ;
var response = await GetResponse < LineupInfo [ ] > ( "https://www.mb3admin.com" + path ) . ConfigureAwait ( false ) ;
var response = await GetResponse < LineupInfo [ ] > ( "https://data.emby.media/service/lineups?postalCode=" + location ) . ConfigureAwait ( false ) ;
return response . Select ( i = > new NameIdPair
{
@ -93,7 +91,7 @@ namespace MediaBrowser.Server.Implementations.LiveTv.Listings.Emby
using ( var secondStream = await _httpClient . Get ( new HttpRequestOptions
{
Url = "https:// data.emby.media " + path
Url = "https:// www.mb3admin.com " + path
} ) . ConfigureAwait ( false ) )
{