From f765d0a153d05076180048828d6fc1e973e77e72 Mon Sep 17 00:00:00 2001 From: Curtis Hall Date: Wed, 3 Jan 2024 20:05:57 -0600 Subject: [PATCH] Update lib.php Remove unneeded ID number, we just need the manufacturer name --- www/lib/lib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/lib/lib.php b/www/lib/lib.php index 18b3094f..b8659bb9 100644 --- a/www/lib/lib.php +++ b/www/lib/lib.php @@ -1364,7 +1364,7 @@ public static function getList($manufacturer) // print_r($data); foreach($data['records'] as $camera) { - $list[rawurlencode($manufacturer).' - '.$camera['id']] = $camera['fields']['Model']; + $list[rawurlencode($manufacturer)] = $camera['fields']['Model']; } if(isset($data['offset']))