Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Error on start #15

Open
Premier opened this issue Oct 15, 2017 · 1 comment
Open

Error on start #15

Premier opened this issue Oct 15, 2017 · 1 comment

Comments

@Premier
Copy link

Premier commented Oct 15, 2017

After start, i'm visiting localhost:3700 and obtain the follow error:

WebSocket connection to 'ws://null/' failed: Error in connection establishment: net::ERR_NAME_NOT_RESOLVED

The wav file is created but it is always empty.

@MrYakobo
Copy link

Looking in the source code for binaryjs, it seems like some kind of feature detection

t.supportsBinaryWebsockets = function() {
    try {
        var e = new WebSocket("ws://null");
        return e.onerror = function() {}
        ,
        typeof e.binaryType != "undefined" ? !0 : !1
    } catch (t) {
        return !1
    }

I also got the error message in the log; but no harm was done. The wav-file was fully written into my file system 👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants