From 2faf9b4c20df329cfce767e3d71bdb81d2a9fc51 Mon Sep 17 00:00:00 2001
From: Lim Chee Aun <cheeaun@gmail.com>
Date: Sat, 13 Apr 2024 00:08:09 +0800
Subject: [PATCH] Pixelfed needs remote which is opposite of local lol

---
 src/pages/public.jsx | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/pages/public.jsx b/src/pages/public.jsx
index f4e10b38..7b90f37f 100644
--- a/src/pages/public.jsx
+++ b/src/pages/public.jsx
@@ -33,6 +33,7 @@ function Public({ local, columnMode, ...props }) {
       publicIterator.current = masto.v1.timelines.public.list({
         limit: LIMIT,
         local: isLocal,
+        remote: !isLocal, // Pixelfed
       });
     }
     const results = await publicIterator.current.next();