Revert "fix(backend): renote判定がおかしい"

This reverts commit f43599552f.
This commit is contained in:
syuilo 2023-12-23 17:55:27 +09:00
parent f43599552f
commit e852f4b60d
1 changed files with 1 additions and 1 deletions

View File

@ -293,7 +293,7 @@ export class NoteCreateService implements OnApplicationShutdown {
}
// Check blocking
if (data.renote && data.text == null && data.poll == null && (data.files == null || data.files.length === 0)) {
if (this.isQuote(data)) {
if (data.renote.userHost === null) {
if (data.renote.userId !== user.id) {
const blocked = await this.userBlockingService.checkBlocked(data.renote.userId, user.id);