Fix some build errors.

This commit is contained in:
Brent Simmons
2024-04-06 22:24:15 -07:00
parent d132dd7cee
commit 057d35030b
2 changed files with 5 additions and 3 deletions

View File

@@ -11,6 +11,7 @@ import Account
import Tree
import Parser
import Core
import CommonErrors
enum AddFeedType {
case web
@@ -105,7 +106,7 @@ class AddFeedViewController: UITableViewController {
}
if account!.hasFeed(withURL: url.absoluteString) {
presentError(AccountError.createErrorAlreadySubscribed)
presentError(CommonError.createErrorAlreadySubscribed)
return
}