Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/commit/87cb9903db30e1dead25ee8c5ea34305eb084a03
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
8 additions and
3 deletions
@ -640,7 +640,7 @@ namespace Ombi.Core.Engine
private async Task < RequestEngineResult > ProcessSendingMovie ( MovieRequests request , bool is4K )
{
if ( request. Approved )
if ( is4K ? request . Approved4K : request. Approved )
{
var result = await Sender . Send ( request , is4K ) ;
if ( result . Success & & result . Sent )
@ -21,6 +21,7 @@
"issues" ,
"emby" ,
"availability-rules" ,
"details"
"details" ,
"requests"
]
}
@ -120,7 +120,11 @@ export class MovieDetailsComponent implements OnInit{
} else {
const result = await firstValueFrom ( this . requestService . requestMovie ( { theMovieDbId : this.theMovidDbId , languageCode : this.translate.currentLang , requestOnBehalf : userId , qualityPathOverride : undefined , rootFolderOverride : undefined , is4KRequest : is4K } ) ) ;
if ( result . result ) {
this . movie . requested = true ;
if ( is4K ) {
this . movie . has4KRequest = true ;
} else {
this . movie . requested = true ;
}
this . movie . requestId = result . requestId ;
this . movieRequest = await this . requestService . getMovieRequest ( this . movie . requestId ) ;
this . messageService . send ( this . translate . instant ( "Requests.RequestAddedSuccessfully" , { title : this.movie.title } ) , "Ok" ) ;