Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/overseerr/commit/364d9d105ca3690fcd5f635485d7c025353bb9f1
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
14 additions and
12 deletions
@ -31,7 +31,10 @@ const PlexLoginButton: React.FC<PlexLoginButtonProps> = ({
< span className = "block w-full rounded-md shadow-sm" >
< button
type = "button"
onClick = { ( ) = > getPlexLogin ( ) }
onClick = { ( ) = > {
plexOAuth . preparePopup ( ) ;
setTimeout ( ( ) = > getPlexLogin ( ) , 1500 ) ;
} }
disabled = { loading }
className = "plex-button"
>
@ -72,6 +72,10 @@ class PlexOAuth {
}
}
public preparePopup ( ) : void {
this . openPopup ( { title : 'Plex Auth' , w : 600 , h : 700 } ) ;
}
public async login ( ) : Promise < string > {
try {
this . initializeHeaders ( ) ;
@ -98,12 +102,12 @@ class PlexOAuth {
'context[device][layout]' : 'desktop' ,
code : this.pin.code ,
} ;
this . openPopup ( {
url : ` https://app.plex.tv/auth/#!? ${ this . encodeData ( params ) } ` ,
title : 'Plex Auth' ,
w : 600 ,
h : 700 ,
} ) ;
if ( this . popup ) {
this . popup . location . href = ` https://app.plex.tv/auth/#!? ${ this . encodeData (
params
) } ` ;
}
return this . pinPoll ( ) ;
} catch ( e ) {
@ -150,12 +154,10 @@ class PlexOAuth {
}
private openPopup ( {
url ,
title ,
w ,
h ,
} : {
url : string ;
title : string ;
w : number ;
h : number ;
@ -199,9 +201,6 @@ class PlexOAuth {
if ( newWindow ) {
newWindow . focus ( ) ;
this . popup = newWindow ;
setTimeout ( ( ) = > {
newWindow . location . href = url ;
} , 1500 ) ;
return this . popup ;
}
}