fix initial capture creation

This commit is contained in:
Ferdinand Schober
2024-11-08 18:04:29 +01:00
parent 37d35d3eea
commit 7d6a08141c

View File

@@ -144,6 +144,9 @@ impl Service {
if let Some(hostname) = self.client_manager.get_hostname(handle) {
resolver.resolve(handle, hostname);
}
if let Some(pos) = self.client_manager.get_pos(handle) {
capture.create(handle, pos, CaptureType::Default);
}
}
loop {