Fixed Orchard.AntiSpam compilation issue by correcting data type.

This commit is contained in:
Sipke Schoorstra
2015-07-24 11:20:22 +01:00
parent bd82412d95
commit a88b35192e

View File

@@ -7,7 +7,7 @@ namespace Orchard.AntiSpam.ViewModels {
public class ReCaptchaPartResponseModel {
[JsonProperty("success")]
public string Success { get; set; }
public bool Success { get; set; }
[JsonProperty("error-codes")]
public string[] ErrorCodes { get; set; }