Fixed bug whereby the first story in a social feed wasn't marked as read internally.

This commit is contained in:
RyanBateman 2012-10-03 10:07:57 -04:00
parent 0314cb00a2
commit 28f55ed04d
2 changed files with 1 additions and 1 deletions

View file

@ -110,7 +110,6 @@
<string name="menu_search">Search</string>
<string name="menu_mark_all_as_read">Mark all as read</string>
<string name="menu_logout">Log out</string>
<string name="menu_delete_feed">Delete feed</string>
<string name="feed_deleted">Feed deleted</string>
<string name="error_deleting_feed">There was an error deleting the feed.</string>

View file

@ -48,6 +48,7 @@ public class SocialFeedReading extends Reading {
setupPager();
Story story = readingAdapter.getStory(passedPosition);
addStoryToMarkAsRead(story);
markSocialAsReadList.add(story.feedId, story.id);
}