Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ダイレクトなノートへのリプライにダイレクト以外の公開範囲を指定すると HTL が意図しない挙動をする #13476

Closed
1 task done
zyoshoka opened this issue Feb 29, 2024 · 0 comments · Fixed by #13477
Labels
⚠️bug? This might be a bug

Comments

@zyoshoka
Copy link
Contributor

💡 Summary

以下の図式のように、3人のユーザー A, B, C がいて図のようなフォロー関係が成立しているものとします。ここでユーザー C が図のように visibleUserIds が指定された visibility: specified なノート(C-note)を投稿し、そのノートに対してユーザー B が図のように visibility: followers なリプライ(B-note)を投稿するものとします。

graph TD;
    a((A)) -- follow --> b((B));
    a -- follow --> c((C));
    b -- follow --> c;
    c-note[C-note] -- userId --> c
    c-note -- visibleUserIds --> b
    b-note["B-note (visibility: followers)"] -- userId --> b
    b-note -- replyId --> c-note
Loading

このとき、以下の問題が生じます。

  • ユーザー A の HTL に B-note が WebSocket で流れてくるため、リプライ元の C-note の内容をユーザー A が閲覧することができます。

ダイレクトな投稿に対してダイレクト以外で返信するユースケースが考えられないため、ダイレクトな投稿にはダイレクトでしか返信できないようにするのが良さそうです。

🥰 Expected Behavior

上記の問題が生じない

🤬 Actual Behavior

上記の問題が生じる

📝 Steps to Reproduce

No response

💻 Frontend Environment

No response

🛰 Backend Environment (for server admin)

* Installation Method or Hosting Service:
* Misskey: 2024.2.0
* Node:
* PostgreSQL:
* Redis:
* OS and Architecture:

Do you want to address this bug yourself?

  • Yes, I will patch the bug myself and send a pull request
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
⚠️bug? This might be a bug
Projects
None yet
1 participant