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,
|
||||
Description = description,
|
||||
Url = $"https://twitter.com/{username}",
|
||||
ProfileImageUrl = user.ProfileImageUrlFullSize,
|
||||
ProfileImageUrl = user.ProfileImageUrlFullSize.Replace("http://", "https://"),
|
||||
ProfileBackgroundImageUrl = user.ProfileBackgroundImageUrlHttps,
|
||||
ProfileBannerURL = user.ProfileBannerURL,
|
||||
Protected = user.Protected
|
||||
|
|
Reference in a new issue