1
0
Fork 0
mirror of https://github.com/realzombee/Radarr.git synced 2026-06-02 07:33:16 -07:00
Radarr fork with fixes for "infinite" setups https://radarr.video
  • C# 70.5%
  • TypeScript 15.4%
  • JavaScript 12.1%
  • CSS 1.7%
  • Shell 0.1%
  • Other 0.1%
Find a file
2026-04-16 22:17:58 +01:00
.devcontainer New: Bump to .NET 8 2025-09-09 16:56:04 -05:00
.github Update README and prevent doc changes from triggering builds 2026-01-28 18:55:12 +00:00
.vscode New: Bump to .NET 8 2025-09-09 16:56:04 -05:00
distribution Cleanup distribution files 2023-05-14 09:48:12 -05:00
frontend Fix: (#11303) collection API error when using Movie CollectionThe (#11304) 2025-12-10 20:56:11 +01:00
Logo Update JetBrains logos 2024-10-29 10:00:57 +02:00
schemas add downloadvolumefactor and uploadvolumefactor torznab attributes (#1464) 2016-09-23 21:08:50 +02:00
src fix: Stop tracking downloads after import and removing from the download client 2026-04-16 22:17:58 +01:00
.editorconfig Use 2 spaces indentation for ts/tsx files 2023-07-18 06:50:11 +03:00
.gitattributes Cleanup distribution files 2023-05-14 09:48:12 -05:00
.gitignore Add 'qualitydefinition/limits' endpoint to get size limitations 2025-06-08 10:41:37 +03:00
.yarnrc New: Tooling changes for UI 2019-06-11 22:06:43 -04:00
azure-pipelines.yml chore: Fix innosetup download URI 2026-03-25 20:12:37 +00:00
build.sh Merge pull request #2 from Radarr/develop 2026-04-03 17:29:56 +02:00
CLA.md Change Sonarr to Radarr in CLA.md and CONTRIBUTING.md 2017-01-11 22:02:54 -05:00
CODE_OF_CONDUCT.md Create CODE_OF_CONDUCT.md 2022-11-03 15:56:41 -05:00
CONTRIBUTING.md chore: sync CONTRIBUTING.md from Servarr/wiki (#11207) 2025-10-04 15:23:05 -05:00
Dockerfile Add build action 2026-01-26 21:27:41 +00:00
docs.sh Bump Swashbuckle to 8.1.4 2025-09-09 16:56:04 -05:00
global.json New: Bump to .NET 8 2025-09-09 16:56:04 -05:00
LICENSE Create LICENSE 2017-09-10 16:10:48 +02:00
package.json Bump postcss to 8.5.6 2025-09-28 21:57:01 -05:00
README.md fix: Stop tracking downloads after import and removing from the download client 2026-04-16 22:17:58 +01:00
SECURITY.md Added SECURITY.md 2022-11-21 19:23:43 -06:00
test.sh New: Bump to .NET 8 2025-09-09 16:56:04 -05:00
tsconfig.json Add typescript 2023-04-29 22:47:02 -05:00
yarn.lock Bump postcss to 8.5.6 2025-09-28 21:57:01 -05:00

Radarr

Installation

This fork is designed to be a drop-in replacement for existing Radarr docker installations. Simply replace your radarr docker image with ghcr.io/realzombee/radarr:develop

Sample docker compose:

radarr:
    image: ghcr.io/realzombee/radarr:develop
    container_name: radarr
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Etc/UTC
      # Add env vars for any tweaks you want to enable
      - IGNORE_MATCH_BY_ID_WARNING=true
    volumes:
      - /path/to/radarr/data:/config
      # Additional volume mounts for your media, etc
    ports:
      - 7878:7878
    restart: unless-stopped

Why this fork?

This fork aims to improve certain aspects of Radarr to make it work better with remote "infinite" library setups (Debrid/Usenet streaming, etc). This fork will be kept up-to-date with the Radarr develop branch and the changes in this fork are fully compatible with the original Radarr configs so you can freely swap back and forth between them.

This fork provides two categories of changes:

Fixes

These are universal bug-fixes that should be fixed in the original Radarr project. These have been submitted as pull requests but might not make it into a release until a month or two.

  • ffprobe issues: There's a bug in VideoFileInfoReader that causes ffprobe to read the entire file during HDR analysis if the video stream is at a non-zero index. This is especially problematic for remote files since it uses bandwidth unnecessarily: https://github.com/Radarr/Radarr/pull/11364
  • RefreshMonitoredDownloadsCommand: Tools like decypharr and nzbdav issue this command after processing a download. But when this command is issued through the API or through the UI, it has a Normal priority, causing a buildup of queue items if lots of searches are triggered at once: https://github.com/Radarr/Radarr/pull/11365
  • Fix a bug where Radarr silently ignores torrents that have been previously imported, deleted and then grabbed again. Without this, repairs from tools like decypharr don't work reliably.

Tweaks

These are small changes to Radarr behavior to optimize for debrid/usenet streaming setups. These can be turned on through environment variables.

IGNORE_MATCH_BY_ID_WARNING

This setting turns off this warning

Found matching movie via grab history, but release was matched to movie by ID. Manual Import required

This generally happens on usenet indexers that include a tmdbId in releases that Radarr uses to match against movies while downloading. But during imports, if the files are obfuscated or the file/movie name doesn't match up with Radarr's expectations, it blocks automatic import.

⚠️ Warning: Only use this setting if you trust your indexers to provide the correct tmdbIds when they're present on releases.

Contributing

Feel free to open issues or pull requests for any changes you'd like to see.