Skip to content

Commit b7b32c1

Browse files
Format issues
1 parent 5b1ac19 commit b7b32c1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

obs-studio-client/source/volmeter.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ Napi::Value osn::Volmeter::Create(const Napi::CallbackInfo &info)
7777
if (!ValidateResponse(info, response))
7878
return info.Env().Undefined();
7979

80-
auto instance = osn::Volmeter::constructor.New(
81-
{Napi::Number::New(info.Env(), static_cast<double>(response[1].value_union.ui64)), Napi::Number::New(info.Env(), static_cast<double>(response[2].value_union.ui32))});
80+
auto instance = osn::Volmeter::constructor.New({Napi::Number::New(info.Env(), static_cast<double>(response[1].value_union.ui64)),
81+
Napi::Number::New(info.Env(), static_cast<double>(response[2].value_union.ui32))});
8282

8383
globalCallback::add_volmeter(response[1].value_union.ui64);
8484

obs-studio-server/source/nodeobs_autoconfig.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -546,7 +546,7 @@ void autoConfig::TestBandwidthThread(void)
546546
if (serviceName.compare("") == 0)
547547
serviceName = obs_data_get_string(currentServiceSettings, "service");
548548

549-
key = obs_service_get_connect_info(currentService, OBS_SERVICE_CONNECT_INFO_STREAM_KEY);
549+
key = obs_service_get_connect_info(currentService, OBS_SERVICE_CONNECT_INFO_STREAM_KEY);
550550
if (key.empty()) {
551551
sendErrorMessage("invalid_stream_settings");
552552
gotError = true;

0 commit comments

Comments
 (0)