From 35ce7aae019462b5b39b89a4f900a0c100ff71bd Mon Sep 17 00:00:00 2001 From: Douwe Maan Date: Mon, 25 Jul 2016 22:51:26 -0600 Subject: Use sha1 of discussion ID. --- app/models/note.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'app/models/note.rb') diff --git a/app/models/note.rb b/app/models/note.rb index 7668f3378e9..2c23e04e545 100644 --- a/app/models/note.rb +++ b/app/models/note.rb @@ -145,9 +145,9 @@ class Note < ActiveRecord::Base def discussion_id @discussion_id ||= if for_merge_request? - [:discussion, :note, id].join("-") + Digest::SHA1.hexdigest([:discussion, :note, id].join("-")) else - self.class.build_discussion_id(noteable_type, noteable_id || commit_id) + Digest::SHA1.hexdigest(self.class.build_discussion_id(noteable_type, noteable_id || commit_id)) end end -- cgit v1.2.1