diff options
author | multiple creatures <dev@multiple-creature.party> | 2019-07-26 18:00:49 -0500 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2019-07-26 18:00:49 -0500 |
commit | cfb28743fa08191801d67343d6aaba41830d13e8 (patch) | |
tree | a26396e9db7991579e02375db45a9450a1068793 /app | |
parent | 1aba334730aad01550d72e5c7f0f046d231459d4 (diff) |
fix `delete_in:thread` logic flub
Diffstat (limited to 'app')
-rw-r--r-- | app/lib/bangtags.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/lib/bangtags.rb b/app/lib/bangtags.rb index 74f035685..10082be14 100644 --- a/app/lib/bangtags.rb +++ b/app/lib/bangtags.rb @@ -561,7 +561,7 @@ class Bangtags s = cmd[1].downcase.to_sym s = @parent_status if s == :parent next unless @parent_status.present? - next unless s != :thread && @parent_status.account_id == @account.id + next unless s == :thread || @parent_status.account_id == @account.id i = cmd[2].to_i unit = cmd[3].present? ? cmd[3].downcase : 'minutes' else |