mirror of
https://github.com/f-droid/fdroidclient.git
synced 2026-09-22 20:15:12 -04:00
Merge branch 'master' into development
This commit is contained in:
commit
350d77aec6
1 file changed
+4
-2
@@ -494,8 +494,10 @@ public class AppDetails extends ListActivity {
|
||||
tv = (TextView) findViewById(R.id.license);
|
||||
tv.setText(app.license);
|
||||
|
||||
tv = (TextView) findViewById(R.id.categories);
|
||||
tv.setText(app.categories.toString().replaceAll(",",", "));
|
||||
if (app.categories != null) {
|
||||
tv = (TextView) findViewById(R.id.categories);
|
||||
tv.setText(app.categories.toString().replaceAll(",",", "));
|
||||
}
|
||||
|
||||
tv = (TextView) infoView.findViewById(R.id.description);
|
||||
|
||||
|
||||
Reference in new issue
Block a user