Small changes.

This commit is contained in:
Daniel
2022-06-20 23:59:22 +04:30
parent 41fd5797b2
commit 9251a29c38
4 changed files with 3 additions and 4 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ const client = new MongoClient(URI);
const db = client.db(database);
const list = db.collection(collection);
// Create the storage directories if they do ot exist
// Create the storage directories if they do not exist
if (!fs.existsSync(screenshotDirectory)) {
fs.mkdirSync(screenshotDirectory, { recursive: true });
}