mirror of
https://github.com/pi-hole/web.git
synced 2026-04-24 02:39:25 +01:00
Fix missing separator when there is vendor and address but no hostname
Signed-off-by: DL6ER <dl6er@dl6er.de>
This commit is contained in:
@@ -253,7 +253,7 @@ if ($_POST['action'] == 'get_groups') {
|
||||
}
|
||||
$query_ips->finalize();
|
||||
|
||||
if (count($names) > 0 && count($addresses) > 0)
|
||||
if ((count($names) > 0 || strlen($res["macVendor"]) > 0) && count($addresses) > 0)
|
||||
$extrainfo .= "; ";
|
||||
|
||||
if(count($addresses) === 1)
|
||||
|
||||
Reference in New Issue
Block a user