[UI] Split trackers by newline, not by "/n"

Fixes a bug where e.g. http://not-a-real-tracker.com was split into
http:/
ot-a-real-tracker.com
when the add trackers dialogue was next shown

Closes: https://github.com/deluge-torrent/deluge/pull/469
This commit is contained in:
garret 2024-11-02 17:37:16 +00:00 committed by Calum Lind
parent ee33c0c5bb
commit 98d01fbe35
No known key found for this signature in database
GPG key ID: 90597A687B836BA3

View file

@ -493,7 +493,7 @@ class CreateTorrentDialog:
*textview_buf.get_bounds(), include_hidden_chars=False
)
log.debug('Create torrent tracker lines: %s', trackers_text)
self.config['createtorrent.trackers'] = trackers_text.split('/n')
self.config['createtorrent.trackers'] = trackers_text.splitlines()
# Append trackers liststore with unique trackers and tiers starting from last tier number.
last_tier, orig_trackers = last_tier_trackers_from_liststore(