In Ombi, I've got Movies -> Radarr -> Default Minimum Availability set to "Physical / Web" however when the movie add's Radarr adds it as "tba"

It's creating so many spam "fake" movies that's it's wrecking our watching experience. How can I force one of these to actually respect that setting, I can't find it anywhere as a global in radarr.

you are viewing a single comment's thread
view the rest of the comments
[–] [S] 3 points 2 years ago

Disregard I found a way by editing the config.xml. Seems like it's not exposed in the UI for some stupid ass reason.

If anyone else needs to do this, first thing I did is set this in my config.xml

<DefaultMovieMinimumAvailability>Released</DefaultMovieMinimumAvailability>

Then I bulk updated the radarr.db file

sqlite3 /var/lib/radarr/radarr.db

UPDATE Movies SET MinimumAvailability = 'released';

Validated it updated all my movies:

SELECT COUNT(*) FROM Movies WHERE MinimumAvailability = 'released';

.exit

restarted radarr

  • source