make eager parsing required

This commit is contained in:
Fabian Freund
2025-09-10 14:47:30 +02:00
parent 4f37be28e6
commit 6622dc5b27
3 changed files with 13 additions and 3 deletions
@@ -53,7 +53,11 @@ class AddFeedDialog extends HookConsumerWidget {
controller: textController,
keyboardType: TextInputType.url,
validator: (value) {
return validateUrl(value, onlyHttpProtocol: true);
return validateUrl(
value,
onlyHttpProtocol: true,
eagerParsing: false,
);
},
),
),