Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/9b85f328a6c5b5ca8a17b41bab1e68f7a0e8043b You should set ROOT_URL correctly, otherwise the web may not work correctly.

New: Allow Manual Search when Movie not monitored

Fixes 
pull/5870/head
Qstick 4 years ago
parent 012fe53acc
commit 9b85f328a6

@ -318,7 +318,6 @@ class MovieDetails extends Component {
<PageToolbarButton
label={translate('SearchMovie')}
iconName={icons.SEARCH}
isDisabled={!monitored}
isSpinning={isSearching}
title={undefined}
onPress={onSearchPress}

@ -41,11 +41,11 @@ namespace NzbDrone.Core.IndexerSearch
var downloadedCount = 0;
foreach (var movieId in message.MovieIds)
{
var movies = _movieService.GetMovie(movieId);
var movie = _movieService.GetMovie(movieId);
if (!movies.Monitored)
if (!movie.Monitored && message.Trigger != CommandTrigger.Manual)
{
_logger.Debug("Movie {0} is not monitored, skipping search", movies.Title);
_logger.Debug("Movie {0} is not monitored, skipping search", movie.Title);
continue;
}

Loading…
Cancel
Save