From 84fb076bc446751759465b38624a8ee246793905 Mon Sep 17 00:00:00 2001 From: Marc Rousavy Date: Wed, 17 Mar 2021 15:21:54 +0100 Subject: [PATCH] Fix broken link in Take Photo docs --- docs/docs/CAPTURING.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/CAPTURING.mdx b/docs/docs/CAPTURING.mdx index e55358f..d292857 100644 --- a/docs/docs/CAPTURING.mdx +++ b/docs/docs/CAPTURING.mdx @@ -76,7 +76,7 @@ camera.current.startRecording({ }) ``` -For any error that occured _while recording the video_, the `onRecordingError` callback will be invoked with a [`CaptureError`](api/classes/captureerror-1) and the recording is therefore cancelled. +For any error that occured _while recording the video_, the `onRecordingError` callback will be invoked with a [`CaptureError`](api/classes/cameraerror.cameracaptureerror) and the recording is therefore cancelled. :::note Due to limitations of the React Native Bridge, this function can not be awaited. This means, any errors thrown while trying to start the recording (e.g. `capture/recording-in-progress`) can only be caught synchronously (`isBlockingSynchronousMethod`). This will change with the upcoming React Native Re-Architecture.