mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2025-02-02 12:06:58 +01:00
Correct validation so that we can still move feeds in Reader API accounts
This commit is contained in:
parent
5fdbd4b9d0
commit
2395c0c7df
@ -687,8 +687,14 @@ private extension SidebarOutlineDataSource {
|
|||||||
}
|
}
|
||||||
|
|
||||||
for draggedFeed in draggedFeeds {
|
for draggedFeed in draggedFeeds {
|
||||||
if dropTargetAccount.hasWebFeed(withURL: draggedFeed.url) {
|
if dropTargetAccount.accountID == draggedFeed.accountID {
|
||||||
return true
|
if NSApplication.shared.currentEvent?.modifierFlags.contains(.option) ?? false {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if dropTargetAccount.hasWebFeed(withURL: draggedFeed.url) {
|
||||||
|
return true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user