Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/402a9e1ee0229b28fd7e44a0506e540eeebd7949
You should set ROOT_URL correctly, otherwise the web may not work correctly.
4 changed files with
5 additions and
4 deletions
@ -246,6 +246,7 @@ namespace NzbDrone.Core.MetadataSource.SkyHook
imdbMovie . TitleSlug = titleSlug . ToLower ( ) . Replace ( " " , "-" ) ;
imdbMovie . Year = DateTime . Parse ( result . release_date ) . Year ;
imdbMovie . Images = new List < MediaCover . MediaCover > ( ) ;
imdbMovie . Overview = result . overview ;
try
{
string url = result . poster_path ;
@ -125,7 +125,7 @@ module.exports = Marionette.Layout.extend({
}
else if ( ! this . isExisting ) {
this . resultCollectionView . setExisting ( options . movie . get ( ' i mdbId') )
this . resultCollectionView . setExisting ( options . movie . get ( ' t mdbId') )
/ * t h i s . c o l l e c t i o n . t e r m = ' ' ;
this . collection . reset ( ) ;
this . _clearResults ( ) ;
@ -21,8 +21,8 @@ module.exports = Marionette.CollectionView.extend({
return this . showing >= this . collection . length ;
} ,
setExisting : function ( i mdbid) {
var movies = this . collection . where ( { imdbId : i mdbid } ) ;
setExisting : function ( t mdbid) {
var movies = this . collection . where ( { tmdbId : t mdbid } ) ;
console . warn ( movies )
//debugger;
if ( movies . length > 0 ) {
@ -91,7 +91,7 @@ var view = Marionette.ItemView.extend({
} ,
_configureTemplateHelpers : function ( ) {
var existingMovies = MoviesCollection . where ( { imdbId : this . model . get ( 'i mdbId') } ) ;
var existingMovies = MoviesCollection . where ( { tmdbId : this . model . get ( 't mdbId') } ) ;
console . log ( existingMovies )
if ( existingMovies . length > 0 ) {
this . templateHelpers . existing = existingMovies [ 0 ] . toJSON ( ) ;