Skip to content

Commit

Permalink
fix: empty configuration when using the services extension
Browse files Browse the repository at this point in the history
  • Loading branch information
Tr00d committed Jul 26, 2024
1 parent 5c7393c commit 57ad45d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Vonage/VonageClient.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#region
using System;
using System.IO.Abstractions;
using System.Net.Http;
Expand Down Expand Up @@ -27,6 +28,7 @@
using Vonage.VerifyV2;
using Vonage.Video;
using Vonage.Voice;
#endregion

namespace Vonage;

Expand Down Expand Up @@ -54,7 +56,7 @@ internal VonageClient(Credentials credentials, Configuration configuration, ITim

internal VonageClient(Configuration configuration)
{
this.configuration = this.GetConfiguration();
this.configuration = configuration;
this.Credentials = configuration.BuildCredentials();
}

Expand Down

0 comments on commit 57ad45d

Please sign in to comment.