From 092d07b68e48fb8480cb068bc6558ba3b269fb95 Mon Sep 17 00:00:00 2001 From: Calum Lind Date: Sat, 6 Feb 2021 17:21:11 +0000 Subject: [#3337|Core] Fix lt listen_interfaces not comma-separated A typo meant that the interfaces supplied to libtorrent were not comma-separated. Refs: https://github.com/arvidn/libtorrent/blob/RC_1_1/include/libtorrent/string_util.hpp#L70 --- deluge/core/preferencesmanager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deluge/core/preferencesmanager.py b/deluge/core/preferencesmanager.py index db9556acc..c250130c0 100644 --- a/deluge/core/preferencesmanager.py +++ b/deluge/core/preferencesmanager.py @@ -231,7 +231,7 @@ class PreferencesManager(component.Component): self.core.apply_session_settings( { 'listen_system_port_fallback': self.config['listen_use_sys_port'], - 'listen_interfaces': ''.join(interfaces), + 'listen_interfaces': ','.join(interfaces), } ) -- cgit