Skip to content

Commit

Permalink
ニコニコ動画のgetthumbinfo取得時に発生したXmlExceptionを無視
Browse files Browse the repository at this point in the history
i-フィルタ等のプロキシによってレスポンスが改変されている可能性がある

https://osdn.net/ticket/browse.php?group_id=6526&tid=36689

Fixes: 2ded8a1 ("ニコニコ動画のサムネイル情報の取得をHttpClient, XDocumentに移行")
  • Loading branch information
upsilon committed Mar 18, 2017
1 parent ba9aca5 commit a74a538
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions OpenTween/Resources/ChangeLog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
* FIX: 短縮URLの生成中に投稿欄のテキストが変更されるとエラーが発生する不具合を修正
* FIX: フォロー状態の変更やリストに対する追加・削除を行うと、起動し直すまでその後のAPIアクセスが不能になる場合がある不具合を修正
* FIX: UserStreamsから不正な形式のレスポンスを受信すると切断される不具合を修正
* FIX: ニコニコ動画のサムネイル情報取得時に発生したエラーが適切に処理されない不具合を修正

==== Ver 1.3.6(2016/11/22)
* NEW: 画像アップロード時のタイムアウト時間が変更できるようになりました
Expand Down
1 change: 1 addition & 0 deletions OpenTween/Thumbnail/Services/Nicovideo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ public override async Task<ThumbnailInfo> GetThumbnailInfoAsync(string url, Post
IsPlayable = true,
};
}
catch (XmlException) { }
catch (HttpRequestException) { }

return null;
Expand Down

0 comments on commit a74a538

Please sign in to comment.