Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/commit/6794b887f6544fb41528bdd9728b7824b65e47ee
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
3 additions and
1 deletions
@ -38,6 +38,7 @@ export class CarouselListComponent implements OnInit {
public loadingFlag : boolean ;
public DiscoverType = DiscoverType ;
public is4kEnabled = false ;
public isNewTrendingSourceEnabled = false ;
get mediaTypeStorageKey() {
return "DiscoverOptions" + this . discoverType . toString ( ) ;
@ -139,6 +140,7 @@ export class CarouselListComponent implements OnInit {
public async ngOnInit() {
this . is4kEnabled = this . featureFacade . is4kEnabled ( ) ;
this . isNewTrendingSourceEnabled = this . featureFacade . isNewTrendingSourceEnabled ( ) ;
this . currentlyLoaded = 0 ;
const localDiscoverOptions = + this . storageService . get ( this . mediaTypeStorageKey ) ;
if ( localDiscoverOptions ) {
@ -224,7 +226,7 @@ export class CarouselListComponent implements OnInit {
this . movies = await this . searchService . popularMoviesByPage ( this . currentlyLoaded , this . amountToLoad ) ;
break ;
case DiscoverType . Trending :
if ( this . featureFacade. isNewTrendingSourceEnabled) {
if ( this . isNewTrendingSourceEnabled) {
this . movies = await this . searchService . trendingMoviesByPage ( this . currentlyLoaded , this . amountToLoad ) ;
} else {
this . movies = await this . searchService . nowPlayingMoviesByPage ( this . currentlyLoaded , this . amountToLoad ) ;