mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 11:35:49 +00:00
Fix #2129 : Empty filename can be set in AddTorrent dialog
This commit is contained in:
parent
a5df53249a
commit
eed46994da
1 changed files with 3 additions and 1 deletions
|
@ -864,7 +864,7 @@ class AddTorrentDialog(component.Component):
|
|||
def _on_filename_edited(self, renderer, path, new_text):
|
||||
index = self.files_treestore[path][3]
|
||||
|
||||
new_text = new_text.strip(os.path.sep)
|
||||
new_text = new_text.strip(os.path.sep).strip()
|
||||
|
||||
# Return if the text hasn't changed
|
||||
if new_text == self.files_treestore[path][1]:
|
||||
|
@ -882,6 +882,8 @@ class AddTorrentDialog(component.Component):
|
|||
|
||||
if index > -1:
|
||||
# We're renaming a file! Yay! That's easy!
|
||||
if not new_text:
|
||||
return
|
||||
parent = self.files_treestore.iter_parent(itr)
|
||||
file_path = os.path.join(self.get_file_path(parent), new_text)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue