Reset search feedback message on error.
CHANGELOG.md
| 14 | 14 | instead of exiting the app. No change the behavior when the panel is already | |
| 15 | 15 | closed. | |
| 16 | 16 | * Report what was tried when there is no result. | |
| 17 | + | * Update feedback text in case of error. | |
| 17 | 18 | ||
| 18 | 19 | ### Translations | |
| 19 | 20 |
app/src/main/java/eu/lepiller/nani/MainActivity.java
| 218 | 218 | } | |
| 219 | 219 | feedback_text.setText(String.format(getString(R.string.feedback_no_result_tried), sb.toString())); | |
| 220 | 220 | } | |
| 221 | + | ||
| 222 | + | feedback_text.setText(R.string.feedback_no_result); | |
| 221 | 223 | return; | |
| 222 | 224 | } | |
| 223 | 225 |