Skip to content

Commit

Permalink
UserStreamsからの受信時にXmlExceptionがキャッチされない不具合を修正
Browse files Browse the repository at this point in the history
  • Loading branch information
upsilon committed Mar 18, 2017
1 parent ea0f989 commit ba9aca5
Show file tree
Hide file tree
Showing 2 changed files with 5 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 @@ -19,6 +19,7 @@
* FIX: 発言一覧の更新時にエラーが発生する不具合を回避
* FIX: 短縮URLの生成中に投稿欄のテキストが変更されるとエラーが発生する不具合を修正
* FIX: フォロー状態の変更やリストに対する追加・削除を行うと、起動し直すまでその後のAPIアクセスが不能になる場合がある不具合を修正
* FIX: UserStreamsから不正な形式のレスポンスを受信すると切断される不具合を修正

==== Ver 1.3.6(2016/11/22)
* NEW: 画像アップロード時のタイムアウト時間が変更できるようになりました
Expand Down
4 changes: 4 additions & 0 deletions OpenTween/Twitter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1975,6 +1975,10 @@ private void userStream_StatusArrived(string line)
MyCommon.TraceOut(ex);
return;
}
catch (XmlException)
{
MyCommon.TraceOut("XmlException (StatusArrived): " + line);
}
catch(NullReferenceException)
{
MyCommon.TraceOut("NullRef StatusArrived: " + line);
Expand Down

0 comments on commit ba9aca5

Please sign in to comment.