mirror of
https://iceshrimp.dev/crimekillz/trashposs
synced 2024-11-22 08:53:48 +01:00
refactor: no url instantiation
This commit is contained in:
parent
389427af27
commit
64ddf35ae3
@ -461,16 +461,16 @@ export default async (
|
||||
}
|
||||
|
||||
if (!dontFederateInitially) {
|
||||
if (!note.userHost) {
|
||||
if (Users.isLocalUser(user)) {
|
||||
// Publish if the post is local
|
||||
publishNotesStream(note);
|
||||
} else {
|
||||
const relays = await getCachedRelays();
|
||||
// Some relays (e.g., aode-relay) deliver posts by boosting them as
|
||||
// Announce activities. In that case, user is the relay's actor.
|
||||
const boostedByRelay = relays
|
||||
.map((relay) => new URL(relay.inbox).host)
|
||||
.includes(note.userHost);
|
||||
const boostedByRelay =
|
||||
!!user.inbox &&
|
||||
relays.map((relay) => relay.inbox).includes(user.inbox);
|
||||
|
||||
if (boostedByRelay && data.renote && data.renote.userHost) {
|
||||
/* A relay boosted a remote post. */
|
||||
|
Loading…
Reference in New Issue
Block a user