Photo permission fix

This commit is contained in:
GaidamakUA 2015-12-14 16:22:06 +02:00
parent 439e4663e4
commit fa0fab9ac7

View file

@ -1016,9 +1016,6 @@ public class AudioVideoNotesPlugin extends OsmandPlugin {
}
public void takePhoto(final double lat, final double lon, final MapActivity mapActivity) {
if (AV_EXTERNAL_PHOTO_CAM.get()) {
takePhotoExternal(lat, lon, mapActivity);
} else {
if (ActivityCompat.checkSelfPermission(mapActivity, Manifest.permission.CAMERA)
== PackageManager.PERMISSION_GRANTED) {
takePhotoInternalOrExternal(lat, lon, mapActivity);
@ -1030,7 +1027,6 @@ public class AudioVideoNotesPlugin extends OsmandPlugin {
CAMERA_FOR_PHOTO_REQUEST_CODE);
}
}
}
private void takePhotoInternalOrExternal(double lat, double lon, MapActivity mapActivity) {
openCamera();