Using canvas for now

This commit is contained in:
Lani Aung
2021-10-11 19:25:42 -06:00
parent 738b3c6d35
commit 590c84b81f
10 changed files with 469 additions and 431 deletions
+8
View File
@@ -24,6 +24,14 @@ namespace fxl.codes.kisekae.Models
match.Groups.TryGetValue(groupName, out var group);
if (string.IsNullOrEmpty(group?.Value))
{
if (string.Equals(groupName, "Sets"))
{
for (var index = 0; index < Sets.Length; index++)
{
Sets[index] = true;
}
}
logger.LogWarning($"Unable to find regex group {groupName} in {line}");
continue;
}