Rename AddWebFeedIntent to AddFeedIntent.

This commit is contained in:
Brent Simmons
2023-07-02 15:39:12 -07:00
parent cc438a9057
commit ea14d87743
4 changed files with 29 additions and 29 deletions

View File

@@ -12,8 +12,8 @@ class IntentHandler: INExtension {
override func handler(for intent: INIntent) -> Any {
switch intent {
case is AddWebFeedIntent:
return AddWebFeedIntentHandler()
case is AddFeedIntent:
return AddFeedIntentHandler()
default:
fatalError("Unhandled intent type: \(intent)")
}