REFACTOR: remove unnecessary parentheses

This commit is contained in:
Régis Hanol 2019-03-12 17:13:21 +01:00 committed by GitHub
parent 28384ba62c
commit 154f503d2e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -215,8 +215,7 @@ class Post < ActiveRecord::Base
end
def matches_recent_post?
post_id = $redis.get(unique_post_key)
post_id != (nil) && post_id.to_i != (id)
$redis.get(unique_post_key).to_i != id
end
def raw_hash