@vgroup/dialbox 0.7.52 → 0.7.53

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.
@@ -4760,9 +4760,13 @@ class DialboxComponent {
4760
4760
  this.incomingCallNotification({}, snapshot);
4761
4761
  }
4762
4762
  }
4763
+ this.incomingFromImage = '';
4763
4764
  if (snapshot.data.data?.fromImage) {
4765
+ console.log('Incoming Notification:', snapshot.data.data);
4766
+ console.log('fromImage:', snapshot.data.data?.fromImage);
4764
4767
  this.incomingFromImage = snapshot.data.data?.fromImage;
4765
4768
  }
4769
+ console.log('after assign incomingFromImage:', this.incomingFromImage);
4766
4770
  }
4767
4771
  else if (snapshot?.data?.content == "Missed Call" || snapshot?.data?.data?.status == "rejected" || snapshot?.data?.data?.status == "accepted") {
4768
4772
  let index = this.notificationCallList.findIndex((call) => call?.participantId === snapshot?.data?.data?.recordId || call?.participantId === snapshot?.data?.data?.participantId);