Class: ESS::Postprocessing::ChannelID

Inherits:
Object
  • Object
show all
Defined in:
lib/ess/postprocessing.rb

Instance Method Summary collapse

Instance Method Details

#process(channel_tag, id_tag) ⇒ Object



38
39
40
41
42
# File 'lib/ess/postprocessing.rb', line 38

def process channel_tag, id_tag
  unless id_tag.text!.start_with?('ESSID:') || id_tag.text! == ""
    id_tag.text!(Helpers::uuid(id_tag.text!, 'ESSID:'))
  end
end