Method, Variable, Class Renames in Readarr.Core

Co-Authored-By: ta264 <ta264@users.noreply.github.com>
This commit is contained in:
Qstick
2020-05-12 22:48:46 -04:00
parent 56aedcc467
commit 8547af9fae
572 changed files with 6584 additions and 6597 deletions
+4 -4
View File
@@ -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