in the middle of relearning msal

This commit is contained in:
2022-11-17 16:18:15 -06:00
parent 716470f24d
commit e3cf2f1059
14 changed files with 324 additions and 298 deletions

View File

@@ -42,7 +42,7 @@ public class PromotePrompt
if (command != null && sessionName != null)
{
command.IsPromotion = false;
return shogiApi.PostMove(sessionName, command);
return shogiApi.Move(sessionName, command);
}
return Task.CompletedTask;
}
@@ -51,7 +51,7 @@ public class PromotePrompt
if (command != null && sessionName != null)
{
command.IsPromotion = true;
return shogiApi.PostMove(sessionName, command);
return shogiApi.Move(sessionName, command);
}
return Task.CompletedTask;
}