From c3cf3f39cb3832b925b0957e28e1b867fae9d5b6 Mon Sep 17 00:00:00 2001 From: Bart Louwers Date: Sat, 16 Nov 2024 18:31:57 +0100 Subject: [PATCH] sqlite: run format --- src/node_sqlite.cc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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()) {