From 8ac578a91497fc0e1e4e460e3424e1b7a948a3d0 Mon Sep 17 00:00:00 2001 From: Shadowfacts Date: Sun, 5 Feb 2023 19:53:16 -0500 Subject: [PATCH] Don't set the port to 8080 by default --- Fervor/Sources/Fervor/Item.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Fervor/Sources/Fervor/Item.swift b/Fervor/Sources/Fervor/Item.swift index 9760d70..59a6bc1 100644 --- a/Fervor/Sources/Fervor/Item.swift +++ b/Fervor/Sources/Fervor/Item.swift @@ -13,7 +13,7 @@ public struct Item: Decodable, Sendable { .user(.optional) .password(.optional) .host(.required) - .port(.defaultValue(8080)) + .port(.optional) .path(.optional) .query(.optional) .fragment(.optional)