fix: store webfinger subject for remote users#17228
Open
kenshineto wants to merge 1 commit intomisskey-dev:developfrom
Open
fix: store webfinger subject for remote users#17228kenshineto wants to merge 1 commit intomisskey-dev:developfrom
kenshineto wants to merge 1 commit intomisskey-dev:developfrom
Conversation
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@
## develop #17228 +/- ##
===========================================
- Coverage 63.59% 63.57% -0.02%
===========================================
Files 1162 1163 +1
Lines 116125 116528 +403
Branches 8407 8391 -16
===========================================
+ Hits 73845 74082 +237
- Misses 40075 40261 +186
+ Partials 2205 2185 -20 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Contributor
|
このPRによるapi.jsonの差分 差分はこちら--- base
+++ head
@@ -87818,6 +87818,12 @@
"displayOrder"
]
}
+ },
+ "acct": {
+ "type": [
+ "string",
+ "null"
+ ]
}
},
"required": [
@@ -87829,7 +87835,8 @@
"avatarBlurhash",
"avatarDecorations",
"emojis",
- "onlineStatus"
+ "onlineStatus",
+ "acct"
]
},
"UserDetailedNotMeOnly": { |
Contributor
Backend memory usage comparisonBefore GC
After GC
After Request
|
8b64f60 to
95ada3e
Compare
1 task
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Add
accttoMiUserand the associated database table and api schemas. This holds thesubjectfield returned from webfinger responses for remote user lookups.Why
As described in #17227, @username@host is not always correct if
host(the instance host) is not the same as the user host that the remote instance uses for users.Checklist