mirror of
https://github.com/TeamNewPipe/NewPipe
synced 2025-01-07 16:35:17 +01:00
Fix ErrorActivity actionbar back button not working
The issue is because of R.id.home != android.R.id.home
This commit is contained in:
parent
9fc6f19702
commit
c808beec30
@ -191,7 +191,7 @@ public class ErrorActivity extends AppCompatActivity {
|
||||
@Override
|
||||
public boolean onOptionsItemSelected(final MenuItem item) {
|
||||
switch (item.getItemId()) {
|
||||
case R.id.home:
|
||||
case android.R.id.home:
|
||||
onBackPressed();
|
||||
return true;
|
||||
case R.id.menu_item_share_error:
|
||||
|
Loading…
Reference in New Issue
Block a user