mirror of
https://github.com/codex-storage/deluge.git
synced 2025-02-04 07:33:31 +00:00
[#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
This commit is contained in:
parent
da5d5bee20
commit
092d07b68e
@ -231,7 +231,7 @@ class PreferencesManager(component.Component):
|
|||||||
self.core.apply_session_settings(
|
self.core.apply_session_settings(
|
||||||
{
|
{
|
||||||
'listen_system_port_fallback': self.config['listen_use_sys_port'],
|
'listen_system_port_fallback': self.config['listen_use_sys_port'],
|
||||||
'listen_interfaces': ''.join(interfaces),
|
'listen_interfaces': ','.join(interfaces),
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user