Skip to content

Commit

Permalink
fixed https as default scheme in base url
Browse files Browse the repository at this point in the history
  • Loading branch information
Hossein committed Apr 10, 2023
1 parent 8a5785b commit 66b37c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Kavenegar.Core/Kavenegar.Core.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Version>1.0.5</Version>
<Version>1.0.6</Version>

<TargetFrameworks>netstandard1.2;netstandard1.3;netstandard1.4;netstandard1.5;netstandard1.6;netstandard2.0;</TargetFrameworks>
<Description>A cross-platform library for the kavenegar sms provider; written in C#</Description>
Expand Down
2 changes: 1 addition & 1 deletion Kavenegar.Core/KavenegarApi.cs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public class KavenegarApi
private int _returnCode = 200;
private string _returnMessage = "";
private const string Apipath = "{0}/{1}.{2}";
private const string BaseUrl = "http://api.kavenegar.com/v1";
private const string BaseUrl = "https://api.kavenegar.com/v1";
public KavenegarApi(string apikey)
{
_apikey = apikey;
Expand Down

0 comments on commit 66b37c7

Please sign in to comment.