Fixed: Handle parsing books with multiple authors properly

This commit is contained in:
ta264
2021-03-30 21:24:42 +01:00
parent fa25324463
commit 404da4ae22
23 changed files with 269 additions and 368 deletions
+2 -2
View File
@@ -739,9 +739,9 @@ namespace NzbDrone.Core.Parser
authorName = authorName.Trim(' ');
ParsedTrackInfo result = new ParsedTrackInfo();
var result = new ParsedTrackInfo();
result.AuthorTitle = authorName;
result.Authors = new List<string> { authorName };
Logger.Debug("Track Parsed. {0}", result);
return result;