aboutsummaryrefslogtreecommitdiff
path: root/src/https.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/https.rs')
-rw-r--r--src/https.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/https.rs b/src/https.rs
index 3621e4f..2d97476 100644
--- a/src/https.rs
+++ b/src/https.rs
@@ -93,7 +93,7 @@ async fn handle(
.entries
.iter()
.filter(|ent| {
- ent.host == host
+ ent.host.matches(host)
&& ent
.path_prefix
.as_ref()