From 41c8325aaeddf3587bd2baffaf687c10748b64e8 Mon Sep 17 00:00:00 2001 From: Mohd Husaam Mehdi Date: Tue, 18 Feb 2025 13:57:21 +0530 Subject: [PATCH] parental-control: Support BlockHistory --- parental-control/Makefile | 4 ++-- parental-control/files/lib/parentalcontrol/sync_bundles.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/parental-control/Makefile b/parental-control/Makefile index 93a13a605..d736795fb 100644 --- a/parental-control/Makefile +++ b/parental-control/Makefile @@ -5,13 +5,13 @@ include $(TOPDIR)/rules.mk PKG_NAME:=parental-control -PKG_VERSION:=1.1.0 +PKG_VERSION:=1.1.1 LOCAL_DEV:=0 ifneq ($(LOCAL_DEV),1) PKG_SOURCE_PROTO:=git PKG_SOURCE_URL:=https://dev.iopsys.eu/network/parental-control.git -PKG_SOURCE_VERSION:=6a70cb9e0a9d92952610589915b85ae91841cb7b +PKG_SOURCE_VERSION:=6100c9fdcaa158841993e32965b1c9b98d4e8e01 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz PKG_MIRROR_HASH:=skip endif diff --git a/parental-control/files/lib/parentalcontrol/sync_bundles.sh b/parental-control/files/lib/parentalcontrol/sync_bundles.sh index 6e7fc24b8..21d36da8c 100644 --- a/parental-control/files/lib/parentalcontrol/sync_bundles.sh +++ b/parental-control/files/lib/parentalcontrol/sync_bundles.sh @@ -65,7 +65,7 @@ update_bundle_file_from_url() { local attempt=1 local success=0 while [ $attempt -le 3 ]; do - wget -q -O "$temp_file" "$download_url" + curl -s -o "$temp_file" "$download_url" if [ $? -eq 0 ]; then success=1 break