Bug 792039 - don't write Telemetry ping files for non-official builds; r=taras

This commit is contained in:
Nathan Froyd 2012-09-18 11:10:17 -04:00
parent 04d9897727
commit 40176d9f12

View File

@ -989,7 +989,9 @@ TelemetryPing.prototype = {
}
break;
case "quit-application-granted":
this.savePendingPings();
if (Telemetry.canSend) {
this.savePendingPings();
}
break;
}
},