mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-23 22:25:09 -04:00
Fixed: Handle parsing books with multiple authors properly
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user