Skip to content

Commit

Permalink
fix: Format for Canonn whitelisted event was changed
Browse files Browse the repository at this point in the history
itssimple committed May 3, 2024
1 parent e5fa282 commit 8e56eba
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Journal-Limpet/Jobs/CanonnRDUserUploader.cs
Original file line number Diff line number Diff line change
@@ -444,7 +444,9 @@ public class CanonnEvent
[JsonPropertyName("description")]
public string Description { get; set; }
[JsonPropertyName("definition")]
public CanonnEventDefinition Definition { get; set; }
public string DefinitionJson { get; set; }
[JsonIgnore]
public CanonnEventDefinition Definition { get { return JsonSerializer.Deserialize<CanonnEventDefinition>(DefinitionJson); } }
}

public class CanonnEventDefinition : EliteBaseJsonObject

0 comments on commit 8e56eba

Please sign in to comment.