mirror of
https://framagit.org/tom79/fedilab-tube
synced 2025-06-05 21:09:11 +02:00
release notes
This commit is contained in:
@ -79,7 +79,8 @@ public class MainActivity extends AppCompatActivity {
|
||||
public boolean onQueryTextSubmit(String query) {
|
||||
Intent intent = new Intent(MainActivity.this, SearchActivity.class);
|
||||
Bundle b = new Bundle();
|
||||
b.putString("search", query.trim());
|
||||
String search = query.trim();
|
||||
b.putString("search", search);
|
||||
intent.putExtras(b);
|
||||
startActivity(intent);
|
||||
if (!searchView.isIconified()) {
|
||||
|
@ -1778,7 +1778,9 @@ public class PeertubeAPI {
|
||||
JSONObject resobj = jsonArray.getJSONObject(i);
|
||||
Peertube peertube = parsePeertube(resobj);
|
||||
i++;
|
||||
peertubes.add(peertube);
|
||||
if (peertube.getName() == null || !peertube.getName().toLowerCase().contains("youtube video downloader")) {
|
||||
peertubes.add(peertube);
|
||||
}
|
||||
}
|
||||
} catch (JSONException e) {
|
||||
setDefaultError(e);
|
||||
|
Reference in New Issue
Block a user