mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2026-02-09 09:16:41 +08:00
Fixed Orchard.AntiSpam compilation issue by correcting data type.
This commit is contained in:
@@ -7,7 +7,7 @@ namespace Orchard.AntiSpam.ViewModels {
|
|||||||
|
|
||||||
public class ReCaptchaPartResponseModel {
|
public class ReCaptchaPartResponseModel {
|
||||||
[JsonProperty("success")]
|
[JsonProperty("success")]
|
||||||
public string Success { get; set; }
|
public bool Success { get; set; }
|
||||||
|
|
||||||
[JsonProperty("error-codes")]
|
[JsonProperty("error-codes")]
|
||||||
public string[] ErrorCodes { get; set; }
|
public string[] ErrorCodes { get; set; }
|
||||||
|
|||||||
Reference in New Issue
Block a user