diff options
| author | Robert Speicher <rspeicher@gmail.com> | 2012-09-06 15:31:25 -0400 |
|---|---|---|
| committer | Robert Speicher <rspeicher@gmail.com> | 2012-09-06 15:31:25 -0400 |
| commit | 2faa4bba40909778c1732894faf42a0f00e87cc4 (patch) | |
| tree | 13bc22b348968228cd78dd4d1e0b5d8bdc99fba4 /app/models/note.rb | |
| parent | 3a63f6f31622c5f96ff167b0c8df1367abbf5eda (diff) | |
| download | gitlab-ce-2faa4bba40909778c1732894faf42a0f00e87cc4.tar.gz | |
Update Note#upvote? to support emoji voting
Diffstat (limited to 'app/models/note.rb')
| -rw-r--r-- | app/models/note.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/note.rb b/app/models/note.rb index 711a4ee6935..d8494edd532 100644 --- a/app/models/note.rb +++ b/app/models/note.rb @@ -103,7 +103,7 @@ class Note < ActiveRecord::Base # Returns true if this is an upvote note, # otherwise false is returned def upvote? - note =~ /^\+1/ ? true : false + note.start_with?('+1') || note.start_with?(':+1:') end end # == Schema Information |
