From 54e244013bcaff20ae61ccb3a64a2608943f45b8 Mon Sep 17 00:00:00 2001 From: antisnatchor Date: Sun, 15 Apr 2012 15:08:42 +0100 Subject: [PATCH] Removed response= variable from test_network_request module response. NOt needed. --- modules/debug/test_network_request/command.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/debug/test_network_request/command.js b/modules/debug/test_network_request/command.js index f71ef814c..1e298d835 100644 --- a/modules/debug/test_network_request/command.js +++ b/modules/debug/test_network_request/command.js @@ -25,7 +25,7 @@ beef.execute(function() { var timeout = "<%= @timeout %>"; var dataType = "<%= @dataType %>"; - beef.net.request(scheme, method, domain, port, path, anchor, data, timeout, dataType, function(response) { beef.net.send("<%= @command_url %>", <%= @command_id %>, "response="+JSON.stringify(response)); } ); + beef.net.request(scheme, method, domain, port, path, anchor, data, timeout, dataType, function(response) { beef.net.send("<%= @command_url %>", <%= @command_id %>, JSON.stringify(response)); } ); });