Skip to content

Commit

Permalink
Fix MicrosoftAppID typo (microsoft#3319)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyle Delaney authored Jun 14, 2021
1 parent d360da1 commit da0b7b2
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion samples/javascript_nodejs/07.using-adaptive-cards/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const { AdaptiveCardsBot } = require('./bots/adaptiveCardsBot');

// Create adapter. See https://aka.ms/about-bot-adapter to learn more about adapters.
const adapter = new BotFrameworkAdapter({
appId: process.env.MicrosoftAppID,
appId: process.env.MicrosoftAppId,
appPassword: process.env.MicrosoftAppPassword
});

Expand Down
2 changes: 1 addition & 1 deletion samples/javascript_nodejs/15.handling-attachments/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const { AttachmentsBot } = require('./bots/attachmentsBot');

// Create adapter. See https://aka.ms/about-bot-adapter to learn more about adapters.
const adapter = new BotFrameworkAdapter({
appId: process.env.MicrosoftAppID,
appId: process.env.MicrosoftAppId,
appPassword: process.env.MicrosoftAppPassword
});

Expand Down
2 changes: 1 addition & 1 deletion samples/typescript_nodejs/00.empty-bot/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ server.listen(process.env.port || process.env.PORT || 3978, () => {
// Create adapter.
// See https://aka.ms/about-bot-adapter to learn more about adapters.
const adapter = new BotFrameworkAdapter({
appId: process.env.MicrosoftAppID,
appId: process.env.MicrosoftAppId,
appPassword: process.env.MicrosoftAppPassword
});

Expand Down
2 changes: 1 addition & 1 deletion samples/typescript_nodejs/03.welcome-users/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ server.listen(process.env.port || process.env.PORT || 3978, () => {
// Create adapter.
// See https://aka.ms/about-bot-adapter to learn more about adapters.
const adapter = new BotFrameworkAdapter({
appId: process.env.MicrosoftAppID,
appId: process.env.MicrosoftAppId,
appPassword: process.env.MicrosoftAppPassword
});

Expand Down
2 changes: 1 addition & 1 deletion samples/typescript_nodejs/13.core-bot/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import { FlightBookingRecognizer } from './dialogs/flightBookingRecognizer';
// Create adapter.
// See https://aka.ms/about-bot-adapter to learn more about adapters.
const adapter = new BotFrameworkAdapter({
appId: process.env.MicrosoftAppID,
appId: process.env.MicrosoftAppId,
appPassword: process.env.MicrosoftAppPassword
});

Expand Down

0 comments on commit da0b7b2

Please sign in to comment.