Skip to content

Commit

Permalink
Merge pull request #8 from MoniswapFi/dev
Browse files Browse the repository at this point in the history
Fix: add quest item
  • Loading branch information
ryy197340 authored Sep 19, 2024
2 parents 4c165c7 + bc08c42 commit 80f88f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/controller/quest.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ exports.create = async function (req, res) {
);

const count = await QuestModel.countDocuments({ address: requestBody.address });
if (count === 18 && result && !result.value) {
if (count === 21 && result && !result.value) {
const wallet = await WalletModel.findOne(
{
address: requestBody.address,
Expand Down

0 comments on commit 80f88f3

Please sign in to comment.