You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I believe I've cloned the repository correctly and installed the node packages correctly, but am receiving a ERR_SSL_PROTOCOL_ERROR when trying to run the examples in Chrome using http-server. I've looked up all the ways to resolve this, but haven't found anything that works. Has this been an issue for others?
The text was updated successfully, but these errors were encountered:
find out this line in clm_emotiondetection.html :
else if (window.location.hostname !== "localhost" && window.location.protocol !== "https:"){
window.location.protocol = "https";
and replace with:
else if (window.location.hostname !== "localhost" && window.location.protocol !== "http:"){
window.location.protocol = "http";
I believe I've cloned the repository correctly and installed the node packages correctly, but am receiving a ERR_SSL_PROTOCOL_ERROR when trying to run the examples in Chrome using http-server. I've looked up all the ways to resolve this, but haven't found anything that works. Has this been an issue for others?
The text was updated successfully, but these errors were encountered: