diff --git a/app/controllers/api_controller.rb b/app/controllers/api_controller.rb index 478d21bc7b23bdf67e75b645ad25c428ba612828..957e3c3152348bd207327769859bb89300752a0f 100644 --- a/app/controllers/api_controller.rb +++ b/app/controllers/api_controller.rb @@ -73,7 +73,7 @@ class ApiController < ApplicationController end def current_user - super || current_resource_owner + current_resource_owner || super rescue ActiveRecord::RecordNotFound nil end diff --git a/app/models/status.rb b/app/models/status.rb index a9b7327c359934137a977a9150bbbeea28c5b64f..2d27a57d5129aca0a7a2ea751443a928eb82a1a7 100644 --- a/app/models/status.rb +++ b/app/models/status.rb @@ -42,7 +42,7 @@ class Status < ApplicationRecord cache_associated :account, :application, :media_attachments, :tags, :stream_entry, mentions: :account, reblog: [:account, :application, :stream_entry, :tags, :media_attachments, mentions: :account], thread: :account def reply? - super || !in_reply_to_id.nil? + !in_reply_to_id.nil? || super end def local?