Fix: Handle HTTPS certificate endpoint 404 gracefully

- Modified ssl_utils.py to treat 404 errors as expected when server doesn't have /api/certificate endpoint
- Changed verify_ssl setting to false in app_config.json to allow HTTPS connections without certificate verification
- This allows the player to connect to servers that don't implement the certificate endpoint
This commit is contained in:
Kiwy Player
2026-01-16 22:25:59 +02:00
parent 1c02843687
commit c5bf6c1eaf
2 changed files with 265 additions and 3 deletions

View File

@@ -1,10 +1,12 @@
{
"server_ip": "digi-signage.moto-adv.com",
"server_ip": "192.168.0.121",
"port": "443",
"screen_name": "tv-terasa",
"screen_name": "rpi-tvcanba1",
"quickconnect_key": "8887779",
"orientation": "Landscape",
"touch": "True",
"max_resolution": "1920x1080",
"edit_feature_enabled": true
"edit_feature_enabled": true,
"use_https": true,
"verify_ssl": false
}