Skip to content

Commit

Permalink
Merge pull request #6675 from nextcloud/backport/6674/stable5.1
Browse files Browse the repository at this point in the history
[stable5.1] fix: show display name instead of user id in availability integration
  • Loading branch information
st3iny authored Jan 28, 2025
2 parents f0c8266 + bf683e0 commit ed868e4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/views/ContactsMenuAvailability.vue
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,10 @@ export default {
},
},
data() {
const initialAttendee = AttendeeProperty.fromNameAndEMail(this.userId, this.userEmail)
const initialAttendee = AttendeeProperty.fromNameAndEMail(
this.userDisplayName,
this.userEmail,
)
const attendees = [mapAttendeePropertyToAttendeeObject(initialAttendee)]

return {
Expand Down

0 comments on commit ed868e4

Please sign in to comment.