mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-01-10 15:40:57 -07:00
Update create.ts
This commit is contained in:
parent
4bc5a152f4
commit
1b1871589f
1 changed files with 1 additions and 1 deletions
|
@ -98,7 +98,7 @@ module.exports = (params, user) => new Promise(async (res, rej) => {
|
||||||
setTimeout(async () => {
|
setTimeout(async () => {
|
||||||
const freshMessage = await Message.findOne({ _id: message._id }, { is_read: true });
|
const freshMessage = await Message.findOne({ _id: message._id }, { is_read: true });
|
||||||
if (!freshMessage.is_read) {
|
if (!freshMessage.is_read) {
|
||||||
//#region ただしミュートしているユーザーからの通知なら無視
|
//#region ただしミュートされているなら発行しない
|
||||||
const mute = await Mute.find({
|
const mute = await Mute.find({
|
||||||
muter_id: recipient._id,
|
muter_id: recipient._id,
|
||||||
deleted_at: { $exists: false }
|
deleted_at: { $exists: false }
|
||||||
|
|
Loading…
Reference in a new issue