Skip to content

Commit 4ef11bf

Browse files
committedDec 27, 2023
Removed extraneous parameter to event emit function
- this was never passed to the user because the value below is `1` - our documentation says the close event doesn't emit any parameters, so we can just remove it from the array
1 parent e99160a commit 4ef11bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/database.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ void Database::Work_AfterClose(napi_env e, napi_status status, void* data) {
291291
}
292292

293293
if (!db->open) {
294-
Napi::Value info[] = { Napi::String::New(env, "close"), argv[0] };
294+
Napi::Value info[] = { Napi::String::New(env, "close") };
295295
EMIT_EVENT(db->Value(), 1, info);
296296
db->Process();
297297
}

0 commit comments

Comments
 (0)
Please sign in to comment.