Merge pull request #12226 from nextcloud/fix-options-menu

Fix: ImageActivity crash after options menu selected
This commit is contained in:
Andy Scherzinger 2023-12-06 19:37:16 +01:00 committed by GitHub
commit 2b166a81eb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -205,7 +205,7 @@ public class PreviewImageActivity extends FileActivity implements
}
return true;
} else {
return onOptionsItemSelected(item);
return super.onOptionsItemSelected(item);
}
}