Skip to content

Commit

Permalink
fix: correct local timeline stream (#2707)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sma11X committed Mar 21, 2024
1 parent e9ab0cd commit 0133324
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/timeline/TimelinePublicLocal.vue
@@ -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>
Expand Down

0 comments on commit 0133324

Please sign in to comment.