Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/commit/88d7104defeb42809634403fab757344c4260ff5
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
8 additions and
1 deletions
@ -472,6 +472,7 @@ $(function () {
disableTvRequestsByEpisode : result . disableTvRequestsByEpisode ,
disableTvRequestsBySeason : result . disableTvRequestsBySeason
} ;
return context ;
}
@ -55,5 +55,7 @@ namespace PlexRequests.UI.Models
public int SiteRating { get ; set ; }
public List < Store . EpisodesModel > Episodes { get ; set ; }
public bool TvFullyAvailable { get ; set ; }
public bool DisableTvRequestsByEpisode { get ; set ; }
public bool DisableTvRequestsBySeason { get ; set ; }
}
}
@ -290,8 +290,10 @@ namespace PlexRequests.UI.Modules
private async Task < Response > SearchTvShow ( string searchTerm )
{
Analytics . TrackEventAsync ( Category . Search , Action . TvShow , searchTerm , Username , CookieHelper . GetAnalyticClientId ( Cookies ) ) ;
var plexSettings = await PlexService . GetSettingsAsync ( ) ;
var prSettings = await PrService . GetSettingsAsync ( ) ;
var providerId = string . Empty ;
var apiTv = new List < TvMazeSearch > ( ) ;
@ -336,7 +338,9 @@ namespace PlexRequests.UI.Modules
Runtime = t . show . runtime . ToString ( ) ,
SeriesId = t . show . id ,
SeriesName = t . show . name ,
Status = t . show . status
Status = t . show . status ,
DisableTvRequestsByEpisode = prSettings . DisableTvRequestsByEpisode ,
DisableTvRequestsBySeason = prSettings . DisableTvRequestsBySeason
} ;