lib/socialcastr/like.rb in socialcastr-0.2.13 vs lib/socialcastr/like.rb in socialcastr-0.2.14
- old
+ new
@@ -1,7 +1,7 @@
module Socialcastr
class Like < Base
def unlikable_by?(api_id)
- unlikable && api_id == self.user.id ? true : false
+ api_id == self.user.id ? true : false
end
end
end