mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-24 22:35:39 -04:00
Method, Variable, Class Renames in Readarr.Core
Co-Authored-By: ta264 <ta264@users.noreply.github.com>
This commit is contained in:
@@ -48,10 +48,10 @@ namespace Readarr.Api.V1.Queue
|
||||
return new QueueResource
|
||||
{
|
||||
Id = model.Id,
|
||||
AuthorId = model.Artist?.Id,
|
||||
BookId = model.Album?.Id,
|
||||
Artist = includeArtist && model.Artist != null ? model.Artist.ToResource() : null,
|
||||
Album = includeAlbum && model.Album != null ? model.Album.ToResource() : null,
|
||||
AuthorId = model.Author?.Id,
|
||||
BookId = model.Book?.Id,
|
||||
Artist = includeArtist && model.Author != null ? model.Author.ToResource() : null,
|
||||
Album = includeAlbum && model.Book != null ? model.Book.ToResource() : null,
|
||||
Quality = model.Quality,
|
||||
Size = model.Size,
|
||||
Title = model.Title,
|
||||
|
||||
Reference in New Issue
Block a user