From 165659fbeed884f5c9083c7bfe49fb4ffc531ecb Mon Sep 17 00:00:00 2001 From: rondo-lehner <66181637+rondo-lehner@users.noreply.github.com> Date: Sun, 19 Oct 2025 19:38:39 +0200 Subject: [PATCH] Fix indentation in getting_started.md `detect`, `motion` and `record` were nested within `cameras` whereas they should be on the same level. --- docs/docs/guides/getting_started.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/docs/docs/guides/getting_started.md b/docs/docs/guides/getting_started.md index 89176ad4b..cd9ad5094 100644 --- a/docs/docs/guides/getting_started.md +++ b/docs/docs/guides/getting_started.md @@ -282,10 +282,11 @@ cameras: - path: rtsp://10.0.10.10:554/high_res_stream # <----- Add stream you want to record from roles: - record - detect: ... - record: # <----- Enable recording - enabled: True - motion: ... + +detect: ... +record: # <----- Enable recording + enabled: True +motion: ... ``` If you don't have separate streams for detect and record, you would just add the record role to the list on the first input.