Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/overseerr/commit/9ead8bb1f1680b522550f963502c83e2f99d1e96
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
12 additions and
3 deletions
@ -249,7 +249,10 @@ class DiscordAgent
NotificationAgentKey . DISCORD ,
type
) &&
user . settings ? . discordId
user . settings ? . discordId &&
// Check if it's the user's own auto-approved request
( type !== Notification . MEDIA_AUTO_APPROVED ||
user . id !== payload . request ? . requestedBy . id )
)
. map ( ( user ) = > ` <@ ${ user . settings ? . discordId } > ` )
. join ( ' ' ) ;
@ -208,7 +208,10 @@ class EmailAgent
NotificationAgentKey . EMAIL ,
type
) ? ?
true ) )
true ) ) &&
// Check if it's the user's own auto-approved request
( type !== Notification . MEDIA_AUTO_APPROVED ||
user . id !== payload . request ? . requestedBy . id )
)
. map ( async ( user ) = > {
logger . debug ( 'Sending email notification' , {
@ -185,7 +185,10 @@ class WebPushAgent
NotificationAgentKey . WEBPUSH ,
type
) ? ?
true )
true ) &&
// Check if it's the user's own auto-approved request
( type !== Notification . MEDIA_AUTO_APPROVED ||
user . id !== payload . request ? . requestedBy . id )
) ;
const allSubs = await userPushSubRepository