diff --git a/photon-client/src/stores/settings/CameraSettingsStore.ts b/photon-client/src/stores/settings/CameraSettingsStore.ts index e180ce4fb..4e5e1dc6c 100644 --- a/photon-client/src/stores/settings/CameraSettingsStore.ts +++ b/photon-client/src/stores/settings/CameraSettingsStore.ts @@ -478,7 +478,7 @@ export const useCameraSettingsStore = defineStore("cameraSettings", { const url = new URL(`http://${host}/api/utils/getCalibrationJSON`); url.searchParams.set("width", Math.round(resolution.width).toFixed(0)); url.searchParams.set("height", Math.round(resolution.height).toFixed(0)); - url.searchParams.set("cameraUniqueName", cameraUniqueName.replace(" ", "").trim().toLowerCase()); + url.searchParams.set("cameraUniqueName", cameraUniqueName); return url.href; }