* public/v2/data.js:
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@194121
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
2015-12-15 Ryosuke Niwa <rniwa@webkit.org>
+ Fix v2 UI after r194093.
+
+ * public/v2/data.js:
+
+2015-12-15 Ryosuke Niwa <rniwa@webkit.org>
+
Add /api/measurement-set for v3 UI
https://bugs.webkit.org/show_bug.cgi?id=152312
for (var repositoryId in revisions) {
var commitTimeOrUndefined = revisions[repositoryId][1]; // e.g. ["162190", 1389945046000]
- if (latestTime < commitTimeOrUndefined)
+ if (commitTimeOrUndefined && latestTime < commitTimeOrUndefined)
latestTime = commitTimeOrUndefined;
}
this._latestCommitTime = latestTime !== -1 ? new Date(latestTime) : null;