mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-14 09:13:08 -07:00
- Copy Feed URL no longer works on Folders
This commit is contained in:
parent
68d8a9ed47
commit
1560b4ca3b
1 changed files with 2 additions and 1 deletions
|
@ -335,7 +335,8 @@ void RSSImp::copySelectedFeedsURL() {
|
|||
QList<QTreeWidgetItem*> selectedItems = listStreams->selectedItems();
|
||||
QTreeWidgetItem* item;
|
||||
foreach(item, selectedItems){
|
||||
URLs << listStreams->getItemID(item);
|
||||
if(listStreams->getItemType(item) == RssFile::STREAM)
|
||||
URLs << listStreams->getItemID(item);
|
||||
}
|
||||
qApp->clipboard()->setText(URLs.join("\n"));
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue