We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 698d26b commit cc0ce12Copy full SHA for cc0ce12
1 file changed
schedule/updateStats.js
@@ -30,8 +30,7 @@ module.exports = {
30
builds = await Promise.all(
31
builds.map(async (build) => {
32
let message = await buildMessages.get(build.message);
33
- if (!message) return;
34
- build.date = message.createdTimestamp;
+ build.date = message.createdTimestamp || 0;
35
return {
36
id: build.id,
37
location: build.location,
0 commit comments