Skip to content

Commit 711eb6c

Browse files
author
Kevin Guo
committed
Renamed another helper model
1 parent 216d7b7 commit 711eb6c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

AzureCommunicationUIDemoApp/ios/RNAzureCommunicationUICalling.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ class RNAzureCommunicationUICalling: RCTEventEmitter {
160160
guard let remoteAvatar = remoteAvatar, let remoteAvatarImage = RCTConvert.uiImage(remoteAvatar) else {
161161
return
162162
}
163-
RemoteParticipantAvatarHelper.onRemoteParticipantJoined(to: callComposite,
163+
RNCallCompositeRemoteParticipantAvatarHelper.onRemoteParticipantJoined(to: callComposite,
164164
identifiers: identifiers,
165165
remoteAvatar: remoteAvatarImage)
166166
}
@@ -178,7 +178,7 @@ enum RNCallCompositeConnectionError: Error {
178178
}
179179
}
180180

181-
struct RemoteParticipantAvatarHelper {
181+
struct RNCallCompositeRemoteParticipantAvatarHelper {
182182
private static func getRemoteParticipantId(_ identifier: CommunicationIdentifier) -> String? {
183183
switch identifier {
184184
case is CommunicationUserIdentifier:
@@ -215,10 +215,10 @@ struct RemoteParticipantAvatarHelper {
215215
for: identifier) { result in
216216
switch result {
217217
case .success:
218-
print("::::RemoteParticipantAvatarHelper::onRemoteParticipantJoined::success")
218+
print("::::RNCallCompositeRemoteParticipantAvatarHelper::onRemoteParticipantJoined::success")
219219
break
220220
case .failure(let error):
221-
print("::::RemoteParticipantAvatarHelper::onRemoteParticipantJoined::failure \(error)")
221+
print("::::RNCallCompositeRemoteParticipantAvatarHelper::onRemoteParticipantJoined::failure \(error)")
222222
}
223223
}
224224
}

0 commit comments

Comments
 (0)