Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a1528d2b authored by ABAAKOUK Mehdi's avatar ABAAKOUK Mehdi
Browse files

Merge remote branch 'automerge#froyo/froyo' into froyo

parents cb4c4fcb f5197038
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1300,8 +1300,8 @@ public class RecentCallsListActivity extends ListActivity
            // most recent entry.
            position = 0;
        }
        final Cursor cursor = mAdapter.getCursor();
        if (cursor != null && cursor.moveToPosition(position)) {
        final Cursor cursor = (Cursor)mAdapter.getItem(position);
        if (cursor != null) {
            String number = cursor.getString(NUMBER_COLUMN_INDEX);
            if (TextUtils.isEmpty(number)
                    || number.equals(CallerInfo.UNKNOWN_NUMBER)