diff --git a/src/node_sqlite.cc b/src/node_sqlite.cc index 31cf6d0800bfb5..a6fbc0021c09e8 100644 --- a/src/node_sqlite.cc +++ b/src/node_sqlite.cc @@ -364,7 +364,7 @@ void DatabaseSync::CreateSession(const FunctionCallbackInfo& args) { if (options->HasOwnProperty(env->context(), table_key).FromJust()) { Local table_value; if (!options->Get(env->context(), table_key).ToLocal(&table_value)) { - return; + return; } if (table_value->IsString()) { @@ -456,7 +456,8 @@ void DatabaseSync::ApplyChangeset(const FunctionCallbackInfo& args) { String::NewFromUtf8( env->isolate(), "onConflict", NewStringType::kNormal) .ToLocalChecked(); - Local conflictValue = options->Get(env->context(), conflictKey).ToLocalChecked(); + Local conflictValue = + options->Get(env->context(), conflictKey).ToLocalChecked(); if (!conflictValue->IsUndefined()) { if (!conflictValue->IsNumber()) {