mirror of
https://github.com/ClaytonWWilson/Listify.git
synced 2025-12-16 02:38:47 +00:00
Fix branch merge bug
This commit is contained in:
parent
7cb7f5f468
commit
fdb1ea6213
@ -277,6 +277,13 @@ public class SearchResults extends AppCompatActivity implements SortDialogFragme
|
||||
});
|
||||
resultsProductListSorted.clear();
|
||||
resultsProductListSorted.addAll(temp);
|
||||
|
||||
runOnUiThread(new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
searchResultsListAdapter.notifyDataSetChanged();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
// This is called after the search results come back from the server
|
||||
@ -321,8 +328,6 @@ public class SearchResults extends AppCompatActivity implements SortDialogFragme
|
||||
runOnUiThread(new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
searchResultsListAdapter.notifyDataSetChanged();
|
||||
|
||||
// Hide progress bar
|
||||
loadingSearch.setVisibility(View.GONE);
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user