Skip to content

Commit 3ba0515

Browse files
committed
fix(webkit): Do not show error window on protocol errors
* A lot of commands are not supported by NativeScript. We'd better keep the previous behaviour of simply reporting without stopping on such errors. * Revive the commented `activateDomain` calls. Since they are no longer shown in the UI its better to keep them, so that the frontend starts working if they become implemented in the future. * Match {N} CLI's debugger proxy port. This way it will be possible to use Safari for debugging the frontend without relying on the proxy in `src/debugging` of iOS Runtime's repository.
1 parent b599bbc commit 3ba0515

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/debugging/debugger-proxy.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ PacketStream.prototype._transform = function(packet, encoding, done) {
3232
};
3333

3434
var server = new ws.Server({
35-
port: 8080
35+
port: 41000
3636
});
3737
server.on("connection", function(webSocket) {
3838
console.info("Frontend client connected.");

0 commit comments

Comments
 (0)