this post was submitted on 02 Oct 2024
5 points (100.0% liked)

Servarr - Sonarr/Radarr/Prowlarr

532 readers
1 users here now

Unofficial Lemmy Community for the Servarr suite of apps.

Lidarr, Prowlarr, Radarr, Readarr, Sonarr, and Whisparr collectively referred to as "*Arr" or "*Arrs". They are designed to automatically grab, sort, organize, and monitor your Music, Movie, E-Book, or TV Show collections for Lidarr, Radarr, Readarr, Sonarr, and Whisparr; and to manage your indexers and keep them in sync with the aforementioned apps for Prowlarr.

founded 1 year ago
MODERATORS
 

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.

top 5 comments
sorted by: hot top controversial new old
[–] [email protected] 3 points 1 month 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

[–] [email protected] 2 points 1 month ago (1 children)

That sounds like an ombi issue, as I understand it the minimum availability is only a per-movie setting and can't be set globally so you'll need to figure out why ombi isn't setting it correctly when adding to radarr. Unfortunately I can't offer any tips for ombi because I use overseerr

[–] [email protected] 1 points 1 month ago (1 children)

Agreed, but Ombi does everything else right. *shrug Anyway I found a way to set that globally

[–] [email protected] 1 points 1 month ago (1 children)

Oh nice where was it? Might help anyone else having the same problem.

[–] [email protected] 2 points 1 month ago

I posted a fix in a separate thread