center: use addToSet instead of push

pull/553/head
undefined 2 years ago
parent 330470f9b2
commit dc76742e30
No known key found for this signature in database

@ -67,7 +67,7 @@ class DataReportHandler extends Handler {
await coll.updateOne(
{ _id: installId },
{
$push: {
$addToSet: {
ips: this.request.ip,
},
$set: { downgrade: setPayload },
@ -75,7 +75,7 @@ class DataReportHandler extends Handler {
);
} else {
await coll.updateOne({ _id: installId }, {
$push: {
$addToSet: {
ips: this.request.ip,
},
$set: setPayload,

@ -1,6 +1,6 @@
{
"name": "@hydrooj/center",
"version": "0.2.5",
"version": "0.2.6",
"main": "index.ts",
"repository": "https://github.com/hydro-dev/Hydro.git",
"author": "undefined <i@undefined.moe>",

Loading…
Cancel
Save