Skip to content
This repository was archived by the owner on Feb 24, 2025. It is now read-only.

Commit 17a5622

Browse files
authored
Allow adding favorites when a bookmark already exists (#1258)
Task/Issue URL: https://app.asana.com/0/1177771139624306/1203568202955279/f Tech Design URL: CC: Description: This PR simplifies the Add/Edit Favorite view controller logic. Before this PR, if you opened up this view controller and entered a URL for a bookmark that already existed, it wouldn't let you do anything. Now it will update that bookmark with the new title (if it has changed) and favourite it.
1 parent 02792b1 commit 17a5622

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

DuckDuckGo/HomePage/View/AddEditFavoriteViewController.swift

+1-5
Original file line numberDiff line numberDiff line change
@@ -99,11 +99,7 @@ final class AddEditFavoriteViewController: NSViewController {
9999

100100
private var isInputValid: Bool {
101101
guard let url = urlInputTextField.stringValue.url else { return false }
102-
let isBookmarked = bookmarkManager.isUrlBookmarked(url: url)
103-
let isInputValid = !titleInputTextField.stringValue.isEmpty &&
104-
url.isValid &&
105-
(!isBookmarked || url.absoluteString == originalBookmark?.url)
106-
return isInputValid
102+
return !titleInputTextField.stringValue.isEmpty && url.isValid
107103
}
108104

109105
private func updateConfirmButton() {

0 commit comments

Comments
 (0)