Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Scripts/Services/VisualRecognition/v3/VisualRecognition.cs
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ public bool DetectFaces(string url, SuccessCallback<DetectedFaces> successCallba
/// <param name="acceptLanguage">The language used for the value of `gender_label` in the response. (optional,
/// default to en)</param>
/// <param name="customData">Custom data.</param>
public bool DetectFaces(SuccessCallback<DetectedFaces> successCallback, FailCallback failCallback, string imagePath, string acceptLanguage, Dictionary<string, object> customData = null)
public bool DetectFaces(SuccessCallback<DetectedFaces> successCallback, FailCallback failCallback, string imagePath, string acceptLanguage = null, Dictionary<string, object> customData = null)
{
if (successCallback == null)
throw new ArgumentNullException("successCallback");
Expand Down