Skip to content

Commit c6807e4

Browse files
Added missing semicolon
1 parent f519812 commit c6807e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Scripts/Service/Unity/UnityHttpRequest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ private void UpdateProgress(ref float currentProgress, float progress, Action<fl
125125
{
126126
if (currentProgress < progress)
127127
{
128-
currentProgress = progress
128+
currentProgress = progress;
129129
onProgress?.Invoke(currentProgress);
130130
}
131131
}

0 commit comments

Comments
 (0)