Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion net/transmission/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk

PKG_NAME:=transmission
PKG_VERSION:=4.0.6
PKG_RELEASE:=2
PKG_RELEASE:=3

PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
PKG_SOURCE_URL:=https://github.com/transmission/transmission/releases/download/$(PKG_VERSION)/
Expand Down
1 change: 0 additions & 1 deletion net/transmission/files/transmission.config
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ config transmission
option alt_speed_time_end 1020
option alt_speed_up 50
option bind_address_ipv4 '0.0.0.0'
option bind_address_ipv6 '::'
Copy link
Member

@BKPepe BKPepe Jun 10, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You are saying that '' is not accepted, but I see it in blocklist_url. I think the issue is elsewhere.

Copy link
Author

@nicefile nicefile Sep 1, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't see it

root@wdcm:~# grep block /mnt/sdc2/transmission/settings.json
"blocklist-enabled": false,
root@wdcm:~# grep block /etc/config/transmission
        option blocklist_enabled 'false'

option blocklist_enabled false
option blocklist_url ''
option cache_size_mb 2
Expand Down
3 changes: 2 additions & 1 deletion net/transmission/files/transmission.init
Original file line number Diff line number Diff line change
Expand Up @@ -128,10 +128,11 @@ transmission() {
watch_dir_enabled rpc_host_whitelist_enabled

append_params_quotes "$cfg" \
blocklist_url bind_address_ipv4 bind_address_ipv6 download_dir incomplete_dir \
blocklist_url bind_address_ipv4 download_dir incomplete_dir \
peer_congestion_algorithm peer_socket_tos rpc_bind_address rpc_password rpc_url \
rpc_username rpc_host_whitelist rpc_whitelist script_torrent_done_filename watch_dir

echo '"bind-address-ipv6": "",'
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I dont think that this is right.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As explained above . Maybe doesn't look right but It's working as shown.

echo "\"invalid-key\": false"
echo "}"

Expand Down