X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/675b89ddb7f3c93ced3e6e1fed2db2caca4d67e4..0dc04efef698b54da1357f9a41a6dc6c9b260075:/app/models/diary_comment.rb diff --git a/app/models/diary_comment.rb b/app/models/diary_comment.rb index 8663212eb..a88c69f12 100644 --- a/app/models/diary_comment.rb +++ b/app/models/diary_comment.rb @@ -23,7 +23,7 @@ # class DiaryComment < ApplicationRecord - belongs_to :user + belongs_to :user, :counter_cache => true belongs_to :diary_entry scope :visible, -> { where(:visible => true) } @@ -42,7 +42,7 @@ class DiaryComment < ApplicationRecord sha256 << Rails.application.key_generator.generate_key("openstreetmap/diary_comment") sha256 << id.to_s sha256 << subscriber.to_s - sha256.base64digest[0, 8] + Base64.urlsafe_encode64(sha256.digest)[0, 8] end private