Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/overseerr/commit/fcd1dfc6754abe401b773034fac6ae796fbf8fac
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
9 additions and
6 deletions
@ -17,7 +17,6 @@ import globalMessages from '../../i18n/globalMessages';
import StatusBadge from '../StatusBadge' ;
const messages = defineMessages ( {
requestedby : 'Requested by {username}' ,
seasons : 'Seasons' ,
all : 'All' ,
} ) ;
@ -106,10 +105,15 @@ const RequestCard: React.FC<RequestCardProps> = ({ request }) => {
{ isMovie ( title ) ? title.title : title.name }
< / Link >
< / h2 >
< div className = "text-xs truncate sm:text-sm" >
{ intl . formatMessage ( messages . requestedby , {
username : requestData.requestedBy.displayName ,
} ) }
< div className = "flex items-center" >
< img
src = { requestData . requestedBy . avatar }
alt = ""
className = "w-4 mr-1 rounded-full sm:mr-2 sm:w-5"
/ >
< span className = "text-xs truncate sm:text-sm" >
{ requestData . requestedBy . displayName }
< / span >
< / div >
{ requestData . media . status && (
< div className = "mt-1 sm:mt-2" >
@ -143,7 +143,6 @@
"components.RequestButton.viewrequest" : "View Request" ,
"components.RequestButton.viewrequest4k" : "View 4K Request" ,
"components.RequestCard.all" : "All" ,
"components.RequestCard.requestedby" : "Requested by {username}" ,
"components.RequestCard.seasons" : "Seasons" ,
"components.RequestList.RequestItem.failedretry" : "Something went wrong while retrying the request." ,
"components.RequestList.RequestItem.notavailable" : "N/A" ,