Skip to content

Commit

Permalink
Update PetStoreAssistantBot.java
Browse files Browse the repository at this point in the history
  • Loading branch information
chtrembl committed Nov 8, 2023
1 parent efe148c commit e41bfef
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ protected CompletableFuture<Void> onMessageActivity(TurnContext turnContext) {
if (sessionID == null && csrfToken == null) {
// set the props
sessionIDProperty.set(turnContext, azurePetStoreSessionInfo.getSessionID()).join();
csrfTokenProperty.set(turnContext, azurePetStoreSessionInfo.getSessionID()).join();
csrfTokenProperty.set(turnContext, azurePetStoreSessionInfo.getCsrfToken()).join();
// save the user state changes
userState.saveChanges(turnContext).join();

Expand Down

0 comments on commit e41bfef

Please sign in to comment.