Skip to content

Commit

Permalink
Merge branch 'master' into cwhitten/channels-update
Browse files Browse the repository at this point in the history
  • Loading branch information
cwhitten authored May 2, 2019
2 parents dc4cdb0 + eee2b26 commit 7f20391
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/app/client/src/data/sagas/chatSagas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ function getTextFromActivity(activity: Activity): string {
} else if (activity.valueType === ValueTypes.Activity) {
return 'text' in activity.value ? activity.value.text : activity.label;
}
return activity.text;
return activity.text || activity.label || '';
}

function buildDiff(prependWith: string, path: (string | number)[], target: any, source: any): void {
Expand Down

0 comments on commit 7f20391

Please sign in to comment.