We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8d22eb commit 0f644a8Copy full SHA for 0f644a8
server/controller/speedtests.js
@@ -90,7 +90,7 @@ module.exports.importTests = async (data) => {
90
if (entry.error === null) delete entry.error;
91
if (entry.resultId === null) delete entry.resultId;
92
93
- if (["custom", "auto"].includes(entry.type)) continue;
+ if (!["custom", "auto"].includes(entry.type)) continue;
94
if (!/^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}.\d{3}Z$/.test(entry.created)) continue;
95
96
try {
0 commit comments