From 78a678172f142531d79a14037becd190cac8b968 Mon Sep 17 00:00:00 2001 From: dgtlmoon Date: Fri, 26 Jan 2024 16:15:31 +0100 Subject: [PATCH] Update changedetection.sh - playwright API changed and its possible the installed version was still the older version --- ct/changedetection.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ct/changedetection.sh b/ct/changedetection.sh index 5fe9759a..3c13c7be 100644 --- a/ct/changedetection.sh +++ b/ct/changedetection.sh @@ -57,6 +57,8 @@ header_info if [[ ! -f /etc/systemd/system/changedetection.service ]]; then msg_error "No ${APP} Installation Found!"; exit; fi msg_info "Updating ${APP} LXC" pip3 install changedetection.io --upgrade &>/dev/null +# https://github.com/dgtlmoon/changedetection.io/blob/d31a45d49a3d50aff4c103aee47f75c598ca3ad4/Dockerfile#L28 +pip3 install playwright~=1.40 --upgrade &>/dev/null msg_ok "Updated Successfully" exit }