Skip to content
This repository was archived by the owner on Sep 2, 2021. It is now read-only.

Commit 13d3ef6

Browse files
committed
Adding a null check.
1 parent f1500d9 commit 13d3ef6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ <h5 data-i18n="footer.in-touch.header">Keep in Touch</h5>
465465
// Probe previous entry to see if the update is a dot update,
466466
// in which case combine both the entries.
467467
var prevBuild = data[0][1];
468-
if (prevBuild.versionString && prevBuild.versionString === buildName) {
468+
if (prevBuild && prevBuild.versionString && prevBuild.versionString === buildName) {
469469
build.newFeatures = build.newFeatures.concat(prevBuild.newFeatures);
470470
}
471471

0 commit comments

Comments
 (0)