make sure avatar is served in https, fix #87
This commit is contained in:
parent
7fec7e765e
commit
5aa8deb47b
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ namespace BirdsiteLive.Twitter
|
||||||
Name = user.Name,
|
Name = user.Name,
|
||||||
Description = description,
|
Description = description,
|
||||||
Url = $"https://twitter.com/{username}",
|
Url = $"https://twitter.com/{username}",
|
||||||
ProfileImageUrl = user.ProfileImageUrlFullSize,
|
ProfileImageUrl = user.ProfileImageUrlFullSize.Replace("http://", "https://"),
|
||||||
ProfileBackgroundImageUrl = user.ProfileBackgroundImageUrlHttps,
|
ProfileBackgroundImageUrl = user.ProfileBackgroundImageUrlHttps,
|
||||||
ProfileBannerURL = user.ProfileBannerURL,
|
ProfileBannerURL = user.ProfileBannerURL,
|
||||||
Protected = user.Protected
|
Protected = user.Protected
|
||||||
|
|
Loading…
Add table
Reference in a new issue