1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2024-06-26 07:03:20 +00: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:
Alireza Tofighi 2021-05-16 02:19:52 +04:30
parent 9fc6f19702
commit c808beec30

View File

@ -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: