Keep device vendor when using alternate device (#6591)

This commit is contained in:
trideeindhoven
2023-03-28 18:23:37 +02:00
committed by GitHub
parent d5850f154c
commit 8c0f8e8505

View File

@@ -600,9 +600,9 @@
$device_firmware_version = $row["device_firmware_version"]; $device_firmware_version = $row["device_firmware_version"];
$device_user_uuid = $row["device_user_uuid"]; $device_user_uuid = $row["device_user_uuid"];
$device_location = strtolower($row["device_location"]); $device_location = strtolower($row["device_location"]);
$device_vendor = strtolower($row["device_vendor"]); //keep the original device_vendor
$device_enabled = $row["device_enabled"]; $device_enabled = $row["device_enabled"];
//keep the original template //keep the original device_template
$device_description = $row["device_description"]; $device_description = $row["device_description"];
} }
} }