atsuchan

Results 9 comments of atsuchan

> とりあえずコメントアウト この影響でこれ以降に作成したインスタンスで 通報ページが参照できなくなっているインスタンスがある https://github.com/misskey-dev/misskey/issues/9183 `IF NOT EXISTS`を追加すれば重複エラーは回避できるようになるので ``` CREATE INDEX IF NOT EXISTS "IDX_a9021cc2e1feb5f72d3db6e9f5" ON "abuse_user_report" ("targetUserId") ``` このように変更するべきではあるが コメントアウト以降にすでにマイグレーションが完走してしまってるインスタンスも多数なので 別途これに加えて、コメントアウトされた通報の外部キー制約を加えたマイグレーションファイルを新規作成するのが一番よさそう。

Redis notes `requirepass` to keep capability and recommend to use ACL file. `REDIS_URL` is required to use ACL auth. So I added the value to sample. But as you told,...

Try running this SQL ``` DELETE FROM "abuse_user_report" WHERE "targetUserId" NOT IN (SELECT "id" FROM "user") ``` ``` ALTER TABLE "abuse_user_report" ADD CONSTRAINT "FK_a9021cc2e1feb5f72d3db6e9f5f" FOREIGN KEY ("targetUserId") REFERENCES "user"("id") ON...

参考情報 `userActivation`について Firefoxではバージョン120(2023-11-21)から実装されていて Firefoxの通常リリースは現状バージョン123 Extended Support Releaseは現状バージョン115となっており ESR版でこのAPI(navigator.userActivation)を使うと ``` Uncaught TypeError: navigator.userActivation is undefined ``` というエラーが発生して通知が来なくなるように見えます Chromeでは2019年1月, Edgeでは2020年1月に対応しているので 基本的には問題になることはありませんが `navigator.userActivation`が`undefined`ならスキップにしてもいいのかもしれません

Misskey needs to remain Suspended State of Remote account, so account deletion job for remote Suspended User does not delete him completely from DB. Therefore, `isDeleted` state of Remote Suspended...

Misskey doesn't delete User A1 from User Table on DB when Instance B deletes User A1 as Moderation. Because User A1 is still active on Instance A, so if User...

I understand. And yes. 1. Misskey should not send Delete Activity when moderator suspend Local User, because the user is not actually deleted and follow relationships are not get synced...

I have looked `api/admin/accounts/delete` but currently `api/admin/delete-account` is used so I understand that misskey trys to delete Remote account completely from DB. https://github.com/misskey-dev/misskey/blob/2b8056a8525e1b38536aa0406ba9446a88b365b9/packages/backend/src/server/api/endpoints/admin/accounts/delete.ts#L60