Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/commit/130efd8216c58a2c62395fbd467e4a5548083362
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
8 additions and
4 deletions
@ -96,9 +96,9 @@ export class MovieDetailsComponent {
rootFolderOverride : result.radarrFolderId , } ) . toPromise ( ) ;
if ( requestResult . result ) {
this . movie . requested = true ;
this . movie . requestId = result . requestId ;
this . movieRequest = await this . requestService . getMovieRequest ( this . movie . requestId ) ;
this . movie . requestId = requestResult . requestId ;
this . messageService . send ( requestResult . message , "Ok" ) ;
this . movieRequest = await this . requestService . getMovieRequest ( this . movie . requestId ) ;
} else {
this . messageService . send ( requestResult . errorMessage , "Ok" ) ;
}
@ -44,7 +44,11 @@ export class DiscoverCard {
}
get requestButton ( ) : Cypress . Chainable < any > {
return cy . get ( ` #requestButton ${ this . id } ${ this . movie ? '1' : '0' } ${ this . type } ` ) ;
if ( this . type ) {
return cy . get ( ` #requestButton ${ this . id } ${ this . movie ? '1' : '0' } ${ this . type } ` ) ;
}
return cy . get ( ` #requestButton ${ this . id } ${ this . movie ? '1' : '0' } ` ) ;
}
verifyTitle ( expected : string ) : Cypress . Chainable < any > {
@ -79,7 +79,7 @@ describe("Search Tests", () => {
card . requestButton . should ( 'exist' ) ;
} ) ;
it ("No TV results, enabling movies filter we get results" , ( ) = > {
it .only ("No TV results, enabling movies filter we get results" , ( ) = > {
Page . navbar . searchFilter . applyFilter ( true , false , false ) ;
Page . visit ( "half blood prince" ) ;