Skip to content

Commit 336c494

Browse files
committed
updated changelog
1 parent da17c44 commit 336c494

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
0.3.3:
22
* Added Restart failed button
33
* Disabled suggestions for captcha input
4+
* Show correct order of packages and files
45

56
0.3.2:
67
* More detailed error messages, when no connection can be established

src/org/pyload/android/client/fragments/AbstractPackageFragment.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -307,9 +307,9 @@ public void run() {
307307
protected void onDataReceived() {
308308
app.setProgress(false);
309309
Collections.sort(data, mOrderComparator);
310-
for (PackageData pak : data) {
310+
for (PackageData pak : data)
311311
Collections.sort(pak.links, mOrderComparator);
312-
}
312+
313313
PackageListAdapter adapter = (PackageListAdapter) getExpandableListAdapter();
314314
adapter.setData(data);
315315
}

0 commit comments

Comments
 (0)