Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Null reference exception при попытке получить треки персональных плейлистов из лендинга #32

Open
QRFiling opened this issue Sep 21, 2023 · 1 comment

Comments

@QRFiling
Copy link

YLanding landing = await MainWindow.Client.GetLanding(YLandingBlockType.PersonalPlaylists); //всё окей

YPlaylist playlist = (landing.Blocks[0].Entities[0] as YLandingEntityPersonalPlaylist).Data.Data; //на этом этапе корректно получается плейлист дежавю

//так как плейлист пустой (playlist.Tracks == null), получаю треки
YPlaylist playlistWithTracks = await playlist.WithTracksAsync(); //тут падает с исключением

Метод Client.GetPersonalPlaylists() работает исправно

Немногочисленные результаты дебагера прикрепляю
log.txt

@K1llMan
Copy link
Owner

K1llMan commented Sep 23, 2023

Тут проблема с десериализатором. Он почему-то при десериализации не прокидывает для вложенных объектов контекст, содержащий необходимое API для вызовов, поэтому и возникает ошибка. Пока могу посоветовать только взять id плейлиста и достать его через
Client.GetPlaylist(userId, kinds);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants