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

Fixed: Write ID3v2 genres as text, not a number

pull/2517/head
ta264 3 years ago
parent e413f8d72f
commit feee1881b2

@ -362,6 +362,7 @@ namespace NzbDrone.Core.MediaFiles
if (file.TagTypes.HasFlag(TagTypes.Id3v2))
{
TagLib.Id3v2.Tag.UseNumericGenres = false;
var id3tag = (TagLib.Id3v2.Tag)file.GetTag(TagTypes.Id3v2);
id3tag.SetTextFrame("TMED", Media);
WriteId3Date(id3tag, "TDRC", "TYER", "TDAT", Date);

Loading…
Cancel
Save