From 643e8b98cc0ea8d6ada8f727d4563de2fa1ad4d1 Mon Sep 17 00:00:00 2001 From: p0358 Date: Thu, 19 Feb 2026 15:42:09 +0100 Subject: [PATCH 1/2] add og:description tag --- app/client/src/views/Watch.js | 1 + app/server/fireshare/templates/metadata.html | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/app/client/src/views/Watch.js b/app/client/src/views/Watch.js index 805e982b..c57ea23f 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 @@ + From 9bd8b93343a5b56453c8ac1d1aef5772f5741229 Mon Sep 17 00:00:00 2001 From: p0358 Date: Thu, 19 Feb 2026 15:52:43 +0100 Subject: [PATCH 2/2] make chown error in entrypoint.sh non-fatal --- entrypoint.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/entrypoint.sh b/entrypoint.sh index 25501a64..ae824ade 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)"