Re-jiggle sort order of contributions

This commit is contained in:
YuviPanda 2013-02-06 03:37:05 +05:30
parent eb3f0a4d1c
commit 9f51fdf9b4

View file

@ -148,7 +148,7 @@ public class ContributionsActivity extends AuthenticatedActivity implements Load
This is why Contribution.STATE_COMPLETED is -1. This is why Contribution.STATE_COMPLETED is -1.
*/ */
private String CONTRIBUTION_SORT = Contribution.Table.COLUMN_STATE + " DESC, (" + Contribution.Table.COLUMN_TIMESTAMP + " * " + Contribution.Table.COLUMN_STATE + "), " + Contribution.Table.COLUMN_UPLOADED + " DESC"; private String CONTRIBUTION_SORT = Contribution.Table.COLUMN_STATE + " DESC, " + Contribution.Table.COLUMN_UPLOADED + " DESC , (" + Contribution.Table.COLUMN_TIMESTAMP + " * " + Contribution.Table.COLUMN_STATE + ")";
@Override @Override
protected void onResume() { protected void onResume() {