feat: 好友管理 - #6317
Conversation
枯荣有数,屡变星霜,天行有常,本不为古今更易、人事存亡。`
|
@codex review |
1 similar comment
|
@codex review |
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 65f923fc7b
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
|
@codex review |
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 0aa1484bd6
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
|
@codex review |
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: caf2ec8dd0
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| .whenComplete(Schedulers.javafx(), (result, exception) -> { | ||
| setLoading(false); |
There was a problem hiding this comment.
Serialize overlapping friend-list refreshes
When the user clicks the toolbar refresh while the constructor-triggered or another refresh is still running, the toolbar remains enabled and both tasks execute concurrently. The first callback to finish clears loading even if another request is active, and a slower older callback can subsequently overwrite the newer list or replace it with a failure overlay. Disable/cancel overlapping refreshes or ignore callbacks from superseded requests.
Useful? React with 👍 / 👎.
resolves #6157
resolves #6114