Fix stripping of pasted text when adding podcast URL.

This commit is contained in:
auouymous 2022-08-13 02:34:45 -06:00
parent bab023a4db
commit 932a8e7069
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ class gPodderAddPodcast(BuilderWidget):
def receive_clipboard_text(self, clipboard, text, data=None):
if text is not None:
self.entry_url.set_text(text).strip()
self.entry_url.set_text(text.strip())
else:
self.show_message(_('Nothing to paste.'), _('Clipboard is empty'))