mirror of
https://example.com
synced 2024-11-22 22:56:41 +09:00
fix: show local-only posts in timelines in real time
This commit is contained in:
parent
4c445bf590
commit
14d32d420f
1 changed files with 1 additions and 1 deletions
|
@ -172,7 +172,7 @@ export default async (
|
||||||
// biome-ignore lint/suspicious/noAsyncPromiseExecutor: FIXME
|
// biome-ignore lint/suspicious/noAsyncPromiseExecutor: FIXME
|
||||||
new Promise<Note>(async (res, rej) => {
|
new Promise<Note>(async (res, rej) => {
|
||||||
const dontFederateInitially =
|
const dontFederateInitially =
|
||||||
data.localOnly || data.visibility?.startsWith("hidden") === true;
|
data.visibility?.startsWith("hidden") === true;
|
||||||
|
|
||||||
// If you reply outside the channel, match the scope of the target.
|
// If you reply outside the channel, match the scope of the target.
|
||||||
// TODO (I think it's a process that could be done on the client side, but it's server side for now.)
|
// TODO (I think it's a process that could be done on the client side, but it's server side for now.)
|
||||||
|
|
Loading…
Reference in a new issue