fix: don't crash server if analytics fails to save

fixes
MongoBulkWriteError: E11000 duplicate key error collection:
 community.objects index: _key_1_value_-1 dup key: { _key: "analytics:pageviews", value: "1639807200000" }
isekai-main
Barış Soner Uşaklı 3 years ago
parent e332acf3f7
commit 8fb89d761a

@ -159,7 +159,6 @@ Analytics.writeData = async function () {
await Promise.all(dbQueue);
} catch (err) {
winston.error(`[analytics] Encountered error while writing analytics to data store\n${err.stack}`);
throw err;
}
};

Loading…
Cancel
Save