about summary refs log tree commit diff
path: root/app/controllers
diff options
context:
space:
mode:
authorFire Demon <firedemon@creature.cafe>2020-09-17 10:50:48 -0500
committerFire Demon <firedemon@creature.cafe>2020-09-17 10:50:48 -0500
commit4a1b8bcf34ce834ee8c30f1ac94c29f4e56a2b41 (patch)
tree7b807907331cdaa179365d1e95a5519365e5420e /app/controllers
parent1f565e335bf0fb9de1581958fe6e3df45aee2d8b (diff)
[Timelines] Include local posts in Rowdy Tavern mode
Diffstat (limited to 'app/controllers')
-rw-r--r--app/controllers/api/v1/timelines/public_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/api/v1/timelines/public_controller.rb b/app/controllers/api/v1/timelines/public_controller.rb
index b53f7750f..274392c61 100644
--- a/app/controllers/api/v1/timelines/public_controller.rb
+++ b/app/controllers/api/v1/timelines/public_controller.rb
@@ -42,7 +42,7 @@ class Api::V1::Timelines::PublicController < Api::BaseController
 
   def public_timeline_statuses
     local = truthy_param?(:local) ? true : :local_reblogs
-    Status.as_public_timeline(current_account, truthy_param?(:remote) ? :remote : local)
+    Status.as_public_timeline(current_account, truthy_param?(:remote) ? nil : local)
   end
 
   def insert_pagination_headers