# File lib/uniform_notifier/base.rb, line 18
    def self.out_of_channel_notify(data)
      return unless active?

      # For compatibility to the old protocol
      data = { title: data } if data.is_a?(String)

      _out_of_channel_notify(data)
    end