From 382d7c9712b3792a377b7382fd8bdb368c714705 Mon Sep 17 00:00:00 2001 From: Kimura Youichi Date: Wed, 11 Feb 2015 13:11:22 +0900 Subject: [PATCH] =?UTF-8?q?=E3=82=B5=E3=83=A0=E3=83=8D=E3=82=A4=E3=83=AB?= =?UTF-8?q?=E7=94=BB=E5=83=8F=E3=82=92=E3=83=80=E3=83=96=E3=83=AB=E3=82=AF?= =?UTF-8?q?=E3=83=AA=E3=83=83=E3=82=AF=E3=81=99=E3=82=8B=E9=9A=9B=E3=81=AB?= =?UTF-8?q?=20FullSizeImageUrl=20=E3=81=8Cnull=E3=81=AE=E5=A0=B4=E5=90=88?= =?UTF-8?q?=E3=81=AF=20ImageUrl=20=E3=82=92=E9=96=8B=E3=81=8F=E3=82=88?= =?UTF-8?q?=E3=81=86=E5=A4=89=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- OpenTween/Tween.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/OpenTween/Tween.cs b/OpenTween/Tween.cs index 5bd7b8c02..bdde08673 100644 --- a/OpenTween/Tween.cs +++ b/OpenTween/Tween.cs @@ -13176,8 +13176,7 @@ private void tweetThumbnail1_ThumbnailImageSearchClick(object sender, ThumbnailI private void OpenThumbnailPicture(ThumbnailInfo thumbnail) { - var url = thumbnail.IsPlayable ? thumbnail.ImageUrl : - thumbnail.FullSizeImageUrl ?? thumbnail.ThumbnailUrl; + var url = thumbnail.FullSizeImageUrl ?? thumbnail.ImageUrl; this.OpenUriAsync(url); }