Skip to content

Commit 49e421a

Browse files
committed
lint
1 parent 51fa175 commit 49e421a

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

source/mqtt5_client.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2379,7 +2379,8 @@ napi_value aws_napi_mqtt5_client_new(napi_env env, napi_callback_info info) {
23792379
napi_value node_metrics = *arg++;
23802380
if (!aws_napi_is_null_or_undefined(env, node_metrics)) {
23812381
napi_value node_libraryName = NULL;
2382-
if (napi_get_named_property(env, node_metrics, AWS_NAPI_KEY_METRICS_LIBRARYNAME, &node_libraryName) == napi_ok &&
2382+
if (napi_get_named_property(env, node_metrics, AWS_NAPI_KEY_METRICS_LIBRARYNAME, &node_libraryName) ==
2383+
napi_ok &&
23832384
aws_byte_buf_init_from_napi(&libraryName, env, node_libraryName) == AWS_OP_SUCCESS) {
23842385
metrics.library_name = aws_byte_cursor_from_buf(&libraryName);
23852386
client_options.metrics = &metrics;

0 commit comments

Comments
 (0)