Skip to content

Commit 7fc2b23

Browse files
authored
Merge pull request #301859 from ahammer/master
Update type in generic arguments (incorrect)
2 parents 0de7746 + 51a133d commit 7fc2b23

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

articles/communication-services/tutorials/includes/log-file-retrieval-android.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
// Call when a support request is being called
33
private void onSupportRequest(String userMessage) {
44
// Assuming the getSupportFiles method returns a List or similar collection.
5-
List<SupportFile> supportFiles = callClient.getdebugInfo().getSupportFiles();
5+
List<File> supportFiles = callClient.getdebugInfo().getSupportFiles();
66

77
// Send the files and any user message to your Ticket System
88
dispatchSupportRequestToBackend(userMessage, supportFiles);
99
}
10-
```
10+
```

articles/communication-services/tutorials/includes/log-file-retrieval-windows.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
private void OnSupportRequest(string userMessage)
44
{
55
// Assuming the GetSupportFiles method returns a List or similar collection.
6-
IReadOnlyList<SupportFile> supportFiles = callClient.DebugDetails.SupportFiles;
6+
IReadOnlyList<string> supportFiles = callClient.DebugDetails.SupportFiles;
77

88
// Send the files and any user message to your Ticket System
99
DispatchSupportRequestToBackend(userMessage, supportFiles);
1010
}
11-
```
11+
```

0 commit comments

Comments
 (0)