Skip to content

Commit f592cce

Browse files
Merge pull request #223124 from vhuseinova-msft/vhuseinova-msft-patch-1
Update ios.md
2 parents db24088 + 30bde65 commit f592cce

File tree

1 file changed

+2
-2
lines changed
  • articles/communication-services/how-tos/ui-library-sdk/includes/troubleshooting

1 file changed

+2
-2
lines changed

articles/communication-services/how-tos/ui-library-sdk/includes/troubleshooting/ios.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ Azure Communication UI [open source library](https://github.com/Azure/communicat
1313

1414
`DebugInfo` is an object that contains debug information for the current CallComposite object.
1515

16-
Call ID is used to identify Communication Services calls. `lastCallId` is an ID of the last call for the current CallComposite object. When a CallComposite object is created and a call isn't started yet, `lastCallId` will return `nil` value. The call ID value will be set when a call is started. The value will be preserved until a new call is started or CallComposite instance is deallocated.
16+
Call ID is used to identify Communication Services calls. `currentOrLastCallId` is an ID of the current or last call for the current CallComposite object. When a CallComposite object is created and a call isn't started yet, `currentOrLastCallId` will return `nil` value. The call ID value will be set when a call is started. The value will be preserved until a new call is started or CallComposite instance is deallocated.
1717

1818
The debug information can be retrieved from `CallComposite`:
1919

2020
```swift
2121
let callComposite = CallComposite()
2222
...
2323
let debugInfo = callComposite.debugInfo
24-
let lastCallId = debugInfo.lastCallId
24+
let currentOrLastCallId = debugInfo.currentOrLastCallId
2525
```

0 commit comments

Comments
 (0)