Skip to content

Commit

Permalink
Merge remote-tracking branch 'Upstream/develop' into Upstream_release
Browse files Browse the repository at this point in the history
  • Loading branch information
BlythMeister committed Sep 18, 2013
2 parents 000a98a + e8d2c5d commit 1d30e2c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion android/clientbeta/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.tweetlanes.android.beta"
android:versionCode="51"
android:versionName="1.2.1_b5">
android:versionName="1.2.1_b6">



Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,10 @@ boolean configureCachedStatuses() {

setStatusFeed(_mCachedStatusFeed, false);
if (getStatusFeed() != null && mLastTwitterStatusIdSeen != null) {
updateListHeading(getStatusFeed().getStatusIndex(mLastTwitterStatusIdSeen));
Integer index = getStatusFeed().getStatusIndex(mLastTwitterStatusIdSeen);
if(index != null){
updateListHeading(index);
}
}

return true;
Expand Down

0 comments on commit 1d30e2c

Please sign in to comment.