Created
March 7, 2012 22:12
-
-
Save upsilon/1996583 to your computer and use it in GitHub Desktop.
@malariya_qma 氏から指摘のあったバグの原因と思はれる箇所の修正差分 #OpenTween
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/OpenTween/StatusDictionary.cs b/OpenTween/StatusDictionary.cs | |
index 3c04689..7763f05 100644 | |
--- a/OpenTween/StatusDictionary.cs | |
+++ b/OpenTween/StatusDictionary.cs | |
@@ -1193,7 +1193,7 @@ namespace OpenTween | |
posts = Tab.Posts; | |
} | |
- for (int i = StartIdx; i < toIdx; i+= stp) | |
+ for (int i = StartIdx; i <= toIdx; i+= stp) | |
{ | |
var id = Tab.GetId(i); | |
if (id > -1 && !posts[id].IsRead) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
指摘のあったツイート:
https://twitter.com/malariya_qma/status/177347041461157888
https://twitter.com/malariya_qma/status/177354025036038144
参照: https://github.com/opentween/OpenTween/blob/6be4473c/Tween/StatusDictionary.vb#L914
目視デバッグのためこの修正で動作が改善されるかどうかは未確認。