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

Fixed: Avoid NullRef for Movie Resources with a null tags field

pull/10076/head
tsuereth 10 months ago committed by GitHub
parent 8a5c0ffd18
commit 69ad0caf40
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -198,7 +198,7 @@ namespace Radarr.Api.V3.Movies
RootFolderPath = resource.RootFolderPath,
Tags = resource.Tags,
Tags = resource.Tags ?? new HashSet<int>(),
Added = resource.Added,
AddOptions = resource.AddOptions
};

Loading…
Cancel
Save