@chat21/chat21-ionic 3.4.23-rc2 → 3.4.23-rc3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1099,9 +1099,9 @@ export class ConversationDetailPage implements OnInit, OnDestroy, AfterViewInit
|
|
|
1099
1099
|
this.logger.log('[CONVS-DETAIL] - SEND MESSAGE - type: ', type)
|
|
1100
1100
|
this.logger.log('[CONVS-DETAIL] - SEND MESSAGE - metadata: ', metadata)
|
|
1101
1101
|
this.logger.log('[CONVS-DETAIL] - SEND MESSAGE - additional_attributes: ', additional_attributes)
|
|
1102
|
-
let
|
|
1102
|
+
let firstname = this.loggedUser.uid
|
|
1103
1103
|
if (this.loggedUser.fullname) {
|
|
1104
|
-
|
|
1104
|
+
firstname = this.loggedUser.firstname
|
|
1105
1105
|
}
|
|
1106
1106
|
|
|
1107
1107
|
const g_attributes = this.setAttributes()
|
|
@@ -1165,7 +1165,7 @@ export class ConversationDetailPage implements OnInit, OnDestroy, AfterViewInit
|
|
|
1165
1165
|
this.conversationWith,
|
|
1166
1166
|
this.conversationWithFullname,
|
|
1167
1167
|
this.loggedUser.uid,
|
|
1168
|
-
|
|
1168
|
+
firstname,
|
|
1169
1169
|
this.channelType,
|
|
1170
1170
|
attributes,
|
|
1171
1171
|
)
|
|
@@ -1179,7 +1179,7 @@ export class ConversationDetailPage implements OnInit, OnDestroy, AfterViewInit
|
|
|
1179
1179
|
this.conversationWith,
|
|
1180
1180
|
this.conversationWithFullname,
|
|
1181
1181
|
this.loggedUser.uid,
|
|
1182
|
-
|
|
1182
|
+
firstname,
|
|
1183
1183
|
this.channelType,
|
|
1184
1184
|
attributes,
|
|
1185
1185
|
)
|