Skip to content

Commit

Permalink
[#3337|Core] Fix lt listen_interfaces not comma-separated
Browse files Browse the repository at this point in the history
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
  • Loading branch information
cas-- committed Feb 6, 2021
1 parent da5d5be commit 092d07b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deluge/core/preferencesmanager.py
Expand Up @@ -231,7 +231,7 @@ def __set_listen_on(self):
self.core.apply_session_settings(
{
'listen_system_port_fallback': self.config['listen_use_sys_port'],
'listen_interfaces': ''.join(interfaces),
'listen_interfaces': ','.join(interfaces),
}
)

Expand Down

0 comments on commit 092d07b

Please sign in to comment.