プロジェクト

全般

プロフィール

バグ #1310 » 0001-fixed-nil.patch

パッチ - ncaq エヌユル, 2019-01-10 13:47

差分を表示:

core/plugin/notify/notify.rb
49 49
  on_followers_created do |post, users|
50 50
    if not(users.empty?)
51 51
      if(UserConfig[:notify_followed])
52
        self.notify(users.first, _('%{users} にフォローされました。') % {users: users.map{|u| "@#{u[:idname]}" }.join(' ')}) end
52
        self.notify(users.first, _('%{users} にフォローされました。') % {users: users.map{|u| u && "@#{u[:idname]}" }.join(' ')}) end
53 53
      if(UserConfig[:notify_sound_followed])
54 54
        self.notify_sound(UserConfig[:notify_sound_followed]) end end end
55 55

  
56 56
  on_followers_destroy do |post, users|
57 57
    if not(users.empty?)
58 58
      if(UserConfig[:notify_removed])
59
        self.notify(users.first, _('%{users} にリムーブされました。') % {users: users.map{|u| "@#{u[:idname]}" }.join(' ')}) end
59
        self.notify(users.first, _('%{users} にリムーブされました。') % {users: users.map{|u| u && "@#{u[:idname]}" }.join(' ')}) end
60 60
      if(UserConfig[:notify_sound_removed])
61 61
        self.notify_sound(UserConfig[:notify_sound_removed]) end end end
62 62

  
    (1-1/1)