Skip to content

Commit 1cb3f85

Browse files
committed
システムの日時が変更された場合はTimelineSchedulerの状態をリセットする
日時が過去の方向に変更された場合、次回の更新時刻が設定された間隔以上に後の時刻にスケジュールされてしまうため Fixes: c8b6040 ("タイムラインの定期更新に使用するタイマーの間隔を動的に制御する")
1 parent 6172722 commit 1cb3f85

2 files changed

Lines changed: 3 additions & 0 deletions

File tree

OpenTween/Resources/ChangeLog.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
* FIX: 関連発言表示で一部のツイートの読み込みがエラーになると関連発言タブに何も表示されなくなる不具合を修正
1919
* FIX: 英語版のメッセージのtypoを修正 (thx @TheQuinbox!)
2020
* FIX: スリープからの復帰後に発言一覧の自動更新が停止する場合がある不具合を修正
21+
* FIX: システムの日時を変更すると発言一覧の更新間隔が正しく計算されない場合がある不具合を修正
2122

2223
==== Ver 2.4.3(2019/12/06)
2324
* FIX: 関連発言表示のタブを読み込み中に閉じるとエラーが発生する不具合を修正

OpenTween/Tween.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10991,6 +10991,8 @@ private void SystemEvents_TimeChanged(object sender, EventArgs e)
1099110991

1099210992
this.DispSelectedPost(forceupdate: true);
1099310993
}
10994+
10995+
this.timelineScheduler.Reset();
1099410996
}
1099510997

1099610998
private void TimelineRefreshEnableChange(bool isEnable)

0 commit comments

Comments
 (0)