Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
chtrembl committed Jan 4, 2024
1 parent dd6e794 commit 2f97370
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,11 @@ private AzurePetStoreSessionInfo configureSession(TurnContext turnContext, Strin
azurePetStoreSessionInfo = incomingAzurePetStoreSessionInfo;
azurePetStoreSessionInfo.setId(id);
}
else
{
azurePetStoreSessionInfo.setNewText(text);
}


return azurePetStoreSessionInfo;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ public String getCsrfToken() {
public String getNewText() {
return newText;
}
public void setNewText(String newText) {
this.newText = newText;
}
public String getId() {
return id;
}
Expand Down

0 comments on commit 2f97370

Please sign in to comment.