If we have a query param in webcam URL, the nonce will break it.
Exemple URL: http://192.168.1.39:8080/?action=stream
Without the fixe: http://192.168.1.39:8080/?action=stream?nonce=[...] => not valid URL 💣
With the fixe: http://192.168.1.39:8080/?action=stream&nonce=[...] => valid URL 👌
If we have a query param in webcam URL, the nonce will break it.
Exemple URL:
http://192.168.1.39:8080/?action=stream
Without the fixe:http://192.168.1.39:8080/?action=stream?nonce=[...]
=> not valid URL 💣 With the fixe:http://192.168.1.39:8080/?action=stream&nonce=[...]
=> valid URL 👌PS: I don't know how to test it