diff --git a/birdnet.conf-defaults b/birdnet.conf-defaults
index b329455..8cc19f0 100644
--- a/birdnet.conf-defaults
+++ b/birdnet.conf-defaults
@@ -211,7 +211,7 @@ HEARTBEAT_URL=
## updating picture of your garden, for example.
CUSTOM_IMAGE=
-CUSTOM_IMAGE_TITLE=
+CUSTOM_IMAGE_TITLE=""
## These are just for debugging
LAST_RUN=
diff --git a/scripts/advanced.php b/scripts/advanced.php
index ebd7d1e..4475b81 100644
--- a/scripts/advanced.php
+++ b/scripts/advanced.php
@@ -317,10 +317,12 @@ foreach($formats as $format){
>
+
+
+
These allow you to show a custom image on the Overview page of your BirdNET-Pi. This can be used to show a dynamically updating picture of your garden, for example.
-
diff --git a/scripts/install_config.sh b/scripts/install_config.sh
index cdc386b..f60c077 100755
--- a/scripts/install_config.sh
+++ b/scripts/install_config.sh
@@ -238,7 +238,7 @@ RAW_SPECTROGRAM=0
## updating picture of your garden, for example.
CUSTOM_IMAGE=
-CUSTOM_IMAGE_TITLE=
+CUSTOM_IMAGE_TITLE=""
## These are just for debugging
LAST_RUN=
diff --git a/scripts/update_birdnet_snippets.sh b/scripts/update_birdnet_snippets.sh
index ff8a017..8b0bd28 100755
--- a/scripts/update_birdnet_snippets.sh
+++ b/scripts/update_birdnet_snippets.sh
@@ -178,7 +178,7 @@ if ! grep CUSTOM_IMAGE /etc/birdnet/birdnet.conf &>/dev/null;then
sudo -u$USER echo "CUSTOM_IMAGE=" >> /etc/birdnet/birdnet.conf
fi
if ! grep CUSTOM_IMAGE_TITLE /etc/birdnet/birdnet.conf &>/dev/null;then
- sudo -u$USER echo "CUSTOM_IMAGE_TITLE=" >> /etc/birdnet/birdnet.conf
+ sudo -u$USER echo "CUSTOM_IMAGE_TITLE=\"\"" >> /etc/birdnet/birdnet.conf
fi