Skip to content

Commit fdc7d72

Browse files
author
Daniel Herzog
committed
Small fix to stop some throwing.
1 parent f67fe34 commit fdc7d72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/network/network_details_templates.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ templates._details_content = function(entry, do_raw)
5959
// Bind a template function for raw / not-raw, on demand.
6060
var template_func_name = "_requests_responses_" + do_raw ? "raw" : "not_raw" + "_bound";
6161
if (!this[template_func_name])
62-
this[template_func_name] = this.requests_responses.bind(null, do_raw);
62+
this[template_func_name] = this.requests_responses.bind(this, do_raw);
6363

6464
var requests_responses = entry.requests_responses.map(this[template_func_name]);
6565

0 commit comments

Comments
 (0)