Skip to content

Commit 2e163fc

Browse files
committed
Use correct time value
1 parent ea0673e commit 2e163fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

miniprofiler.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -534,7 +534,7 @@ function describeCustomTimings(customTimings, root) {
534534
timing.Id = arr[i].id;
535535
timing.ExecuteType = arr[i].executeType;
536536
timing.CommandString = arr[i].commandString;
537-
timing.StartMilliseconds = diff(root.startTime, arr[i].startDate);
537+
timing.StartMilliseconds = diff(root.startTime, arr[i].startTime);
538538
timing.DurationMilliseconds = diff(arr[i].startTime, arr[i].stopTime);
539539
timing.StackTraceSnippet = callStack(arr[i].callStack);
540540

0 commit comments

Comments
 (0)