announcement_Setting fix

This commit is contained in:
Harry Bomrah 2015-12-22 19:52:35 +08:00
parent 4ae6d34216
commit 0f168e366e
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ class AnnouncementSetting
field :top_limit, type: Integer, :default => 0
def self.check_limit_for_user(user_id, b_id = nil)
limit = self.first.top_limit
limit = self.first.top_limit rescue 0
return true if limit == 0
count = Bulletin.where(:is_top => true, :create_user_id => user_id, :id.ne => b_id).count
return count < limit