Fix Unread sync bug.

This commit is contained in:
ccd0 2014-11-16 17:38:20 -08:00
parent 8bcec61542
commit c16000a861

View File

@ -68,7 +68,8 @@ Unread =
post = Unread.posts.first
while post
break if ({ID} = post) > Unread.lastReadPost
break if post.ID > Unread.lastReadPost
{ID} = post
post = post.next
Unread.posts.rm ID
delete Unread.postsQuotingYou[ID]