mirror of
https://github.com/fergalmoran/picard.git
synced 2026-02-24 16:43:59 +00:00
Accept https URLs on drop
Fixes PICARD-378
This commit is contained in:
@@ -404,7 +404,7 @@ class BaseTreeView(QtGui.QTreeWidget):
|
||||
BaseTreeView.tagger.add_directory(filename)
|
||||
else:
|
||||
new_files.append(filename)
|
||||
elif url.scheme() == "http":
|
||||
elif url.scheme() in ("http", "https"):
|
||||
path = unicode(url.path())
|
||||
match = re.search(r"/(release|recording)/([0-9a-z\-]{36})", path)
|
||||
if match:
|
||||
|
||||
Reference in New Issue
Block a user