Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 43125e2

Browse files
committedFeb 5, 2024
fix lint
1 parent 863bbbb commit 43125e2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎src/node_report_module.cc

+2-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,8 @@ static void SetNetworkDisabled(const FunctionCallbackInfo<Value>& info) {
9393
Mutex::ScopedLock lock(per_process::cli_options_mutex);
9494
Environment* env = Environment::GetCurrent(info);
9595
Isolate* isolate = env->isolate();
96-
env->options()->report_network_disabled = info[0]->ToBoolean(isolate)->Value();
96+
env->options()->report_network_disabled
97+
= info[0]->ToBoolean(isolate)->Value();
9798
}
9899

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

0 commit comments

Comments
 (0)
Please sign in to comment.