Skip to content

Commit 984a8fb

Browse files
committed
String alias rename.
1 parent c3f0506 commit 984a8fb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Umbraco.Cms.Integrations.Crm.ActiveCampaign/Controllers/FormsController.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public async Task<IActionResult> GetForms()
4040
if (!response.IsSuccessStatusCode)
4141
return new JsonResult(new ResponseDto
4242
{
43-
Message = String.IsNullOrEmpty(content)
43+
Message = string.IsNullOrEmpty(content)
4444
? response.StatusCode == System.Net.HttpStatusCode.Forbidden
4545
? Constants.Resources.AuthorizationFailed : Constants.Resources.ApiAccessFailed
4646
: JsonNode.Parse(content)["message"].ToString()
@@ -66,7 +66,7 @@ public async Task<IActionResult> GetForm(string id)
6666
if (!response.IsSuccessStatusCode)
6767
return new JsonResult(new ResponseDto
6868
{
69-
Message = String.IsNullOrEmpty(content)
69+
Message = string.IsNullOrEmpty(content)
7070
? response.StatusCode == System.Net.HttpStatusCode.Forbidden
7171
? Constants.Resources.AuthorizationFailed : Constants.Resources.ApiAccessFailed
7272
: JsonNode.Parse(content)["message"].ToString()

0 commit comments

Comments
 (0)