mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-25 22:36:59 -04:00
Method, Variable, Class Renames in Readarr.Core
Co-Authored-By: ta264 <ta264@users.noreply.github.com>
This commit is contained in:
@@ -19,7 +19,7 @@ namespace Readarr.Api.V1.Parse
|
||||
private ParseResource Parse()
|
||||
{
|
||||
var title = Request.Query.Title.Value as string;
|
||||
var parsedAlbumInfo = Parser.ParseAlbumTitle(title);
|
||||
var parsedAlbumInfo = Parser.ParseBookTitle(title);
|
||||
|
||||
if (parsedAlbumInfo == null)
|
||||
{
|
||||
@@ -33,9 +33,9 @@ namespace Readarr.Api.V1.Parse
|
||||
return new ParseResource
|
||||
{
|
||||
Title = title,
|
||||
ParsedAlbumInfo = remoteAlbum.ParsedAlbumInfo,
|
||||
Artist = remoteAlbum.Artist.ToResource(),
|
||||
Albums = remoteAlbum.Albums.ToResource()
|
||||
ParsedAlbumInfo = remoteAlbum.ParsedBookInfo,
|
||||
Artist = remoteAlbum.Author.ToResource(),
|
||||
Albums = remoteAlbum.Books.ToResource()
|
||||
};
|
||||
}
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user