fix user without banner
This commit is contained in:
parent
137d6249c9
commit
7136dad175
1 changed files with 8 additions and 1 deletions
|
@ -93,6 +93,13 @@ namespace BirdsiteLive.Twitter
|
||||||
// description = description.Replace(descriptionUrl.URL, descriptionUrl.ExpandedURL);
|
// description = description.Replace(descriptionUrl.URL, descriptionUrl.ExpandedURL);
|
||||||
|
|
||||||
var result = res.RootElement.GetProperty("data").GetProperty("user").GetProperty("result");
|
var result = res.RootElement.GetProperty("data").GetProperty("user").GetProperty("result");
|
||||||
|
string profileBannerURL = null;
|
||||||
|
JsonElement profileBannerURLObject;
|
||||||
|
if (result.GetProperty("legacy").TryGetProperty("profile_banner_url", out profileBannerURLObject))
|
||||||
|
{
|
||||||
|
profileBannerURL = profileBannerURLObject.GetString();
|
||||||
|
}
|
||||||
|
|
||||||
return new TwitterUser
|
return new TwitterUser
|
||||||
{
|
{
|
||||||
Id = long.Parse(result.GetProperty("rest_id").GetString()),
|
Id = long.Parse(result.GetProperty("rest_id").GetString()),
|
||||||
|
@ -102,7 +109,7 @@ namespace BirdsiteLive.Twitter
|
||||||
Url = "", //res.RootElement.GetProperty("data").GetProperty("url").GetString(),
|
Url = "", //res.RootElement.GetProperty("data").GetProperty("url").GetString(),
|
||||||
ProfileImageUrl = result.GetProperty("legacy").GetProperty("profile_image_url_https").GetString().Replace("normal", "400x400"),
|
ProfileImageUrl = result.GetProperty("legacy").GetProperty("profile_image_url_https").GetString().Replace("normal", "400x400"),
|
||||||
ProfileBackgroundImageUrl = result.GetProperty("legacy").GetProperty("profile_banner_url").GetString(),
|
ProfileBackgroundImageUrl = result.GetProperty("legacy").GetProperty("profile_banner_url").GetString(),
|
||||||
ProfileBannerURL = result.GetProperty("legacy").GetProperty("profile_banner_url").GetString(),
|
ProfileBannerURL = profileBannerURL,
|
||||||
Protected = false, //res.RootElement.GetProperty("data").GetProperty("protected").GetBoolean(),
|
Protected = false, //res.RootElement.GetProperty("data").GetProperty("protected").GetBoolean(),
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue