mirror of
https://github.com/TeamNewPipe/NewPipe
synced 2025-01-07 08:25:10 +01:00
fix exception on nothing found
This commit is contained in:
parent
98c65fb9b7
commit
eacbaa3680
@ -836,7 +836,10 @@ public class SearchFragment
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void handleResult(@NonNull SearchInfo result) {
|
public void handleResult(@NonNull SearchInfo result) {
|
||||||
if (!result.getErrors().isEmpty()) {
|
final List<Throwable> exceptions = result.getErrors();
|
||||||
|
if (!exceptions.isEmpty()
|
||||||
|
&& !(exceptions.size() == 1
|
||||||
|
&& exceptions.get(0) instanceof SearchExtractor.NothingFoundException)){
|
||||||
showSnackBarError(result.getErrors(), UserAction.SEARCHED,
|
showSnackBarError(result.getErrors(), UserAction.SEARCHED,
|
||||||
NewPipe.getNameOfService(serviceId), searchString, 0);
|
NewPipe.getNameOfService(serviceId), searchString, 0);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user