Merge pull request #6114 from lithium720/develop

Update LobFile Fetch API Key URL
This commit is contained in:
Jaex 2022-02-20 07:59:49 +03:00 committed by GitHub
commit 5d5414663a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -96,7 +96,7 @@ public string FetchAPIKey(string email, string password)
args.Add("email", email);
args.Add("password", password);
string response = SendRequestMultiPart("https://lithi.io/api/v2/fetch-api-key", args);
string response = SendRequestMultiPart("https://lobfile.com/api/v3/fetch-api-key", args);
if (!string.IsNullOrEmpty(response))
{
@ -137,4 +137,4 @@ public class LobFileSettings
[JsonEncrypt]
public string UserAPIKey { get; set; } = "";
}
}
}