mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-09 18:39:58 +00:00
fix: correct local timeline stream (#2707)
This commit is contained in:
parent
e9ab0cd40b
commit
0133324ded
1 changed files with 1 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
|||
<script setup lang="ts">
|
||||
const paginator = useMastoClient().v1.timelines.public.list({ limit: 30, local: true })
|
||||
const stream = useStreaming(client => client.direct.subscribe())
|
||||
const stream = useStreaming(client => client.public.local.subscribe())
|
||||
</script>
|
||||
|
||||
<template>
|
||||
|
|
Loading…
Reference in a new issue