diff --git a/app/client/src/views/Watch.js b/app/client/src/views/Watch.js
index 805e982..c57ea23 100644
--- a/app/client/src/views/Watch.js
+++ b/app/client/src/views/Watch.js
@@ -173,6 +173,7 @@ const Watch = ({ authenticated }) => {
+
-
+
@@ -23,6 +23,7 @@
+
diff --git a/entrypoint.sh b/entrypoint.sh
index 25501a6..ae824ad 100755
--- a/entrypoint.sh
+++ b/entrypoint.sh
@@ -14,9 +14,9 @@ groupmod -o -g "$PGID" appuser
usermod -o -u "$PUID" appuser
# Set ownership of directories
-chown -R appuser:appuser $DATA_DIRECTORY
-chown -R appuser:appuser $VIDEO_DIRECTORY
-chown -R appuser:appuser $PROCESSED_DIRECTORY
+chown -R appuser:appuser $DATA_DIRECTORY || >&2 echo "WARNING: Could not chown the data directory ($DATA_DIRECTORY) to $PUID:$PGID. Make sure the container has permissions to access this directory."
+chown -R appuser:appuser $VIDEO_DIRECTORY || >&2 echo "WARNING: Could not chown the video directory ($DATA_DIRECTORY) to $PUID:$PGID. Make sure the container has permissions to access this directory."
+chown -R appuser:appuser $PROCESSED_DIRECTORY || >&2 echo "WARNING: Could not chown the processed directory ($DATA_DIRECTORY) to $PUID:$PGID. Make sure the container has permissions to access this directory."
echo '-------------------------------------'
echo "User uid: $(id -u appuser)"