diff --git a/src/NzbDrone.Core/ImportLists/Goodreads/OwnedBooks/GoodreadsOwnedBooks.cs b/src/NzbDrone.Core/ImportLists/Goodreads/OwnedBooks/GoodreadsOwnedBooks.cs index ec059fffb..9770be666 100644 --- a/src/NzbDrone.Core/ImportLists/Goodreads/OwnedBooks/GoodreadsOwnedBooks.cs +++ b/src/NzbDrone.Core/ImportLists/Goodreads/OwnedBooks/GoodreadsOwnedBooks.cs @@ -62,14 +62,13 @@ namespace NzbDrone.Core.ImportLists.Goodreads { var builder = RequestBuilder() .SetSegment("route", $"owned_books/user") + .AddQueryParam("format", "xml") .AddQueryParam("id", Settings.UserId) .AddQueryParam("page", page); var httpResponse = OAuthGet(builder); - _logger.Trace("Got:\n{0}", httpResponse.Content); - - return httpResponse.Deserialize>("reviews").List; + return httpResponse.Deserialize>("owned_books").List; } catch (Exception ex) {