Toggle navigation
Toggle navigation
This project
Loading...
Sign in
mobile
/
YH_EventReport
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
戴强
2017-12-26 15:28:30 +0800
Commit
2c56bcbdb2b331a14be4e7e3178a80c207b9a4e7
1 parent
d5f4511a
修复eventElapsedTime偶像的crash.reviewed by redding
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
YHEventReport/YHEventReport/YHEventReport/YH_EventCollector/YH_EventCollector.m
YHEventReport/YHEventReport/YHEventReport/YH_EventCollector/YH_EventCollector.m
View file @
2c56bcb
...
...
@@ -173,10 +173,11 @@
return
0
;
}
double
startTime
=
0
;
@synchronized
(
self
.
timedEvents
)
{
__block
double
startTime
=
0
;
dispatch_sync
(
self
.
serialQueue
,
^
{
startTime
=
[
self
.
timedEvents
[
viewId
]
doubleValue
];
}
});
if
(
startTime
<=
0
)
{
return
0
;
}
else
{
...
...
Please
register
or
login
to post a comment