Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Ethan-Arrowood committed Feb 5, 2024
1 parent 863bbbb commit 43125e2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/node_report_module.cc
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,8 @@ static void SetNetworkDisabled(const FunctionCallbackInfo<Value>& info) {
Mutex::ScopedLock lock(per_process::cli_options_mutex);
Environment* env = Environment::GetCurrent(info);
Isolate* isolate = env->isolate();
env->options()->report_network_disabled = info[0]->ToBoolean(isolate)->Value();
env->options()->report_network_disabled
= info[0]->ToBoolean(isolate)->Value();
}

static void GetDirectory(const FunctionCallbackInfo<Value>& info) {
Expand Down

0 comments on commit 43125e2

Please sign in to comment.