1
0
Fork 0
mirror of https://github.com/paricafe/misskey.git synced 2025-03-22 16:59:24 -05:00

[API] Fix bug

This commit is contained in:
syuilo⭐️ 2017-01-26 20:45:07 +09:00 committed by GitHub
parent 19b721f92a
commit 811b7c6133

View file

@ -89,7 +89,8 @@ const self = (
const liked = await Like
.count({
user_id: me._id,
post_id: id
post_id: id,
deleted_at: { $exists: false }
}, {
limit: 1
});