public override int PrepareGetChildren(int startIndex, int count)
 {
     p = Spotify.GetStarredPlaylist();
     if (p != null)
         tracks = p.GetTracks();
     return p == null ? 0 : p.TrackCount;
 }