OSDN Git Service

関連発言表示での返信判断のバグ修正
authorkiri_feather <kiri_feather@users.sourceforge.jp>
Fri, 26 Nov 2010 03:08:16 +0000 (03:08 +0000)
committerKimura Youichi <kim.upsilon@bucyou.net>
Sat, 18 Feb 2012 14:16:45 +0000 (23:16 +0900)
git-svn-id: http://svn.sourceforge.jp/svnroot/tween/trunk@1120 e39ad16e-3079-482e-bb30-4b4d378143b6

Tween/Twitter.vb

index 440a8b5..048aba4 100644 (file)
@@ -1522,7 +1522,7 @@ Public Class Twitter
                 item.Data = item.Data.Replace("<3", "♡")
                 CreateSource(item)
                 item.IsRead = read
-                item.IsRead = item.ReplyToList.Contains(_uid)
+                item.IsReply = item.ReplyToList.Contains(_uid)
                 If item.IsMe Then
                     item.IsOwl = False
                 Else
@@ -1530,14 +1530,6 @@ Public Class Twitter
                 End If
                 If item.IsMe AndAlso Not read AndAlso _readOwnPost Then item.IsRead = True
                 If tab IsNot Nothing Then item.RelTabName = tab.TabName
-                ''二重取得回避
-                'SyncLock LockObj
-                '    If tab Is Nothing Then
-                '        If TabInformations.GetInstance.ContainsKey(item.Id) Then Continue For
-                '    Else
-                '        If TabInformations.GetInstance.ContainsKey(item.Id, tab.TabName) Then Continue For
-                '    End If
-                'End SyncLock
                 '非同期アイコン取得&StatusDictionaryに追加
                 arIdx += 1
                 dlgt(arIdx) = New GetIconImageDelegate(AddressOf GetIconImage)