diff options
author | multiple creatures <dev@multiple-creature.party> | 2019-05-06 02:35:07 -0500 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2019-05-21 03:16:22 -0500 |
commit | 3e8690f2c07cc433c37bbc66d07d1bd43225ee13 (patch) | |
tree | 4d7e9920a9f058439b1cff216fcc6a681c9bb48f /app/models | |
parent | 163d42c04ad2af9867bb0ef2b7c81609f6916751 (diff) |
Correct breaking type-o: `scope` -> `starting_scope`
Diffstat (limited to 'app/models')
-rw-r--r-- | app/models/status.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/status.rb b/app/models/status.rb index 6c16046a5..0b3d3cb26 100644 --- a/app/models/status.rb +++ b/app/models/status.rb @@ -479,7 +479,7 @@ class Status < ApplicationRecord starting_scope = account.statuses else starting_scope = local_only ? Status.network : Status - starting_scope = scope.public_browsable + starting_scope = starting_scope.public_browsable end if Setting.show_reblogs_in_public_timelines |