Archived
1
0

Bug fixes, improvements, #283, #282: Fixed, #194: Done

This commit is contained in:
Michael Gordeev
2019-02-23 21:09:56 +03:00
parent 6a12c7809d
commit a3fedccfbe
18 changed files with 190 additions and 135 deletions
+1 -1
View File
@@ -46,7 +46,7 @@ namespace FoxTube.Controls
try { thumbnail.Source = new BitmapImage(item.Snippet.Thumbnails.Medium.Url.ToUri()); }
catch { }
try { avatar.ProfilePicture = new BitmapImage(new Uri((await r.ExecuteAsync()).Items[0].Snippet.Thumbnails.Medium.Url)); }
try { avatar.ProfilePicture = new BitmapImage(new Uri((await r.ExecuteAsync()).Items[0].Snippet.Thumbnails.Medium.Url)) { DecodePixelWidth = 46, DecodePixelHeight = 46 }; }
catch { }
Opacity = 1;