mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-30 20:14:49 +00:00
Bugfix/dns recursion (#3023)
* fix dns recursion and localhost * additional fix
This commit is contained in:
@@ -304,7 +304,7 @@ impl Resolver {
|
|||||||
return Some(res);
|
return Some(res);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if name.zone_of(&*STARTOS) || name.zone_of(&*EMBASSY) {
|
if STARTOS.zone_of(name) || EMBASSY.zone_of(name) {
|
||||||
let Ok(pkg) = name
|
let Ok(pkg) = name
|
||||||
.trim_to(2)
|
.trim_to(2)
|
||||||
.iter()
|
.iter()
|
||||||
|
|||||||
Reference in New Issue
Block a user