Fix message on verify script

This commit is contained in:
Juan Lulkin
2021-02-21 12:18:35 +01:00
parent d2d5056f17
commit 0bdfc9ca63
+1 -1
View File
@@ -33,7 +33,7 @@ for (let id of ids) {
const { next, previous } = metadata[id];
if (next && !ids.includes(next)) {
errors.push(`Next ${next} does not exists in ${id}.`);
errors.push(`Next ${next} does not exist in ${id}.`);
}
if (previous && !ids.includes(previous)) {