Skip to content

Commit 0f644a8

Browse files
committed
Bug fixes
1 parent a8d22eb commit 0f644a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/controller/speedtests.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ module.exports.importTests = async (data) => {
9090
if (entry.error === null) delete entry.error;
9191
if (entry.resultId === null) delete entry.resultId;
9292

93-
if (["custom", "auto"].includes(entry.type)) continue;
93+
if (!["custom", "auto"].includes(entry.type)) continue;
9494
if (!/^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}.\d{3}Z$/.test(entry.created)) continue;
9595

9696
try {

0 commit comments

Comments
 (0)