Skip to content

Commit aaecb90

Browse files
authored
fix: Fix dead link in parallel-video-processing-not-supported error
1 parent 43f5a73 commit aaecb90

File tree

1 file changed

+1
-1
lines changed
  • android/src/main/java/com/mrousavy/camera

1 file changed

+1
-1
lines changed

android/src/main/java/com/mrousavy/camera/Errors.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class NoCameraDeviceError : CameraError("device", "no-device", "No device was se
3939
class InvalidCameraDeviceError(cause: Throwable) : CameraError("device", "invalid-device", "The given Camera device could not be found for use-case binding!", cause)
4040
class ParallelVideoProcessingNotSupportedError(cause: Throwable) : CameraError("device", "parallel-video-processing-not-supported", "The given LEGACY Camera device does not support parallel " +
4141
"video processing (`video={true}` + `frameProcessor={...}`). Disable either `video` or `frameProcessor`. To find out if a device supports parallel video processing, check the `supportsParallelVideoProcessing` property on the CameraDevice. " +
42-
"See https://mrousavy.github.io/react-native-vision-camera/docs/guides/lifecycle#the-supportsparallelvideoprocessing-prop for more information.", cause)
42+
"See https://mrousavy.github.io/react-native-vision-camera/docs/guides/devices#the-supportsparallelvideoprocessing-prop for more information.", cause)
4343

4444
class FpsNotContainedInFormatError(fps: Int) : CameraError("format", "invalid-fps", "The given FPS were not valid for the currently selected format. Make sure you select a format which `frameRateRanges` includes $fps FPS!")
4545
class HdrNotContainedInFormatError() : CameraError(

0 commit comments

Comments
 (0)