(テーブル ハッシュタグ列タグ) タグが存在する場合、ビュー カウントを 1 ずつ更新するメソッドを実行しようとしています。
Hashlog.rb
def self.create_hashlog(hashtag) #enters hashtag into the log table, without #.
@hashtag_scrubbed = hashtag
# Hashlog.find_or_create_by_tag(@hashtag_scrubbed)
taglog = Hashlog.find_or_create_by_tag(@hashtag_scrubbed) do |t|
t.count = 0
end
taglog.count += 1
taglog.save!
end
エラー
Completed 500 Internal Server Error in 772ms
NoMethodError (undefined method `+' for nil:NilClass):
app/models/hashlog.rb:24:in `create_hashlog'
app/controllers/hashtags_controller.rb:32:in `create'