1
0
mirror of https://github.com/SuperBFG7/ympd synced 2025-09-04 03:37:56 +00:00

added wss+digest workaround for mobile safari

This commit is contained in:
SuperBFG7
2015-10-15 16:09:47 +02:00

View File

@@ -62,7 +62,8 @@ static int server_callback(struct mg_connection *c, enum mg_event ev) {
return callback_http(c);
#endif
case MG_AUTH:
if ( gpass == NULL )
// no auth for websockets since mobile safari does not support it
if ( (gpass == NULL) || (c->is_websocket) )
return MG_TRUE;
else {
if ( (fp = fopen(gpass, "r")) != NULL ) {