Make report error title in snackbar uppercase again
This commit is contained in:
parent
85acc53d40
commit
3ff85c2ab7
|
@ -91,7 +91,7 @@ public class ErrorActivity extends AppCompatActivity {
|
|||
if (rootView != null) {
|
||||
Snackbar.make(rootView, R.string.error_snackbar_message, 3 * 1000)
|
||||
.setActionTextColor(Color.YELLOW)
|
||||
.setAction(R.string.error_snackbar_action, v ->
|
||||
.setAction(context.getString(R.string.error_snackbar_action).toUpperCase(), v ->
|
||||
startErrorActivity(returnActivity, context, errorInfo, el)).show();
|
||||
} else {
|
||||
startErrorActivity(returnActivity, context, errorInfo, el);
|
||||
|
|
Loading…
Reference in New Issue