about summary refs log tree commit diff
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-rw-r--r--app/lib/bangtags.rb1
-rw-r--r--app/services/post_status_service.rb1
2 files changed, 0 insertions, 2 deletions
diff --git a/app/lib/bangtags.rb b/app/lib/bangtags.rb
index 9a1b74512..c85f4ee34 100644
--- a/app/lib/bangtags.rb
+++ b/app/lib/bangtags.rb
@@ -707,7 +707,6 @@ class Bangtags
 
         when 'draft'
           chunk = nil
-          @status.local_only = true
           @status.hidden = true
           @vore_stack.push('_draft')
           @component_stack.push(:var)
diff --git a/app/services/post_status_service.rb b/app/services/post_status_service.rb
index 415243485..fde56238a 100644
--- a/app/services/post_status_service.rb
+++ b/app/services/post_status_service.rb
@@ -130,7 +130,6 @@ class PostStatusService < BaseService
 
   def limit_visibility_if_draft
     if @tags.include?('self.draft') || @preloaded_tags.include?('self.draft')
-      @local_only = true
       @hidden = true
     end
   end