$cordovaCamera wrong confirmation screen orientation

Hello guys.
I’m trying to let user take multiple photos using cordovaCamera plugin in landscape mode. I have some warnings and what not to make sure user keeps his phone in landscape mode. The problem that I’m having is that after picture is taken the review screen presented with “Retake” and “Use Photo” in portrait. Is there a way to force review screen to be in landscape? I tried using orientation plugin without much luck. Here is my code.

$scope.takePicture = function () {
    var options = {
    destinationType: Camera.DestinationType.FILE_URI,
    quality: 75,
    targetWidth:720,
    correctOrientation: true,
    encodingType: Camera.EncodingType.JPEG,
    sourceType: Camera.PictureSourceType.Camera
    };

    $cordovaCamera.getPicture(options).then(function (imageData) {            
        $scope.url =  imageData;            
    }, function (err) {
        
    });
}

Thank you