refactor: no url instantiation
This commit is contained in:
parent
159f788696
commit
f53fa96fc6
1 changed files with 4 additions and 4 deletions
|
@ -461,16 +461,16 @@ export default async (
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!dontFederateInitially) {
|
if (!dontFederateInitially) {
|
||||||
if (!note.userHost) {
|
if (Users.isLocalUser(user)) {
|
||||||
// Publish if the post is local
|
// Publish if the post is local
|
||||||
publishNotesStream(note);
|
publishNotesStream(note);
|
||||||
} else {
|
} else {
|
||||||
const relays = await getCachedRelays();
|
const relays = await getCachedRelays();
|
||||||
// Some relays (e.g., aode-relay) deliver posts by boosting them as
|
// Some relays (e.g., aode-relay) deliver posts by boosting them as
|
||||||
// Announce activities. In that case, user is the relay's actor.
|
// Announce activities. In that case, user is the relay's actor.
|
||||||
const boostedByRelay = relays
|
const boostedByRelay =
|
||||||
.map((relay) => new URL(relay.inbox).host)
|
!!user.inbox &&
|
||||||
.includes(note.userHost);
|
relays.map((relay) => relay.inbox).includes(user.inbox);
|
||||||
|
|
||||||
if (boostedByRelay && data.renote && data.renote.userHost) {
|
if (boostedByRelay && data.renote && data.renote.userHost) {
|
||||||
/* A relay boosted a remote post. */
|
/* A relay boosted a remote post. */
|
||||||
|
|
Loading…
Reference in a new issue