[Tween-svn] [1047] Fav取得時の二重取得回避の判定方法バグ修正

Back to archive index

svnno****@sourc***** svnno****@sourc*****
2010年 11月 9日 (火) 18:22:59 JST


Revision: 1047
          http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1047
Author:   kiri_feather
Date:     2010-11-09 18:22:59 +0900 (Tue, 09 Nov 2010)

Log Message:
-----------
Fav取得時の二重取得回避の判定方法バグ修正

Modified Paths:
--------------
    trunk/Tween/Twitter.vb


-------------- next part --------------
Modified: trunk/Tween/Twitter.vb
===================================================================
--- trunk/Tween/Twitter.vb	2010-11-08 15:38:58 UTC (rev 1046)
+++ trunk/Tween/Twitter.vb	2010-11-09 09:22:59 UTC (rev 1047)
@@ -1892,7 +1892,7 @@
                 '二重取得回避
                 SyncLock LockObj
                     'If TabInformations.GetInstance.ContainsKey(post.Id) Then Continue For
-                    If TabInformations.GetInstance.GetTabByType(TabUsageType.Favorites).Posts.ContainsKey(post.Id) Then Continue For
+                    If TabInformations.GetInstance.GetTabByType(TabUsageType.Favorites).Contains(post.Id) Then Continue For
                 End SyncLock
                 'Retweet判定
                 Dim xRnode As XmlNode = xentry.SelectSingleNode("./retweeted_status")



Tween-svn メーリングリストの案内
Back to archive index