From: Guillaume Pellerin Date: Thu, 19 Sep 2013 12:03:09 +0000 (+0200) Subject: icecast server type by default X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=408ebcb0dcfc868c83c8e797c979160c6e6034a5;p=deefuzzer.git icecast server type by default --- diff --git a/deefuzzer/station.py b/deefuzzer/station.py index a0c19fa..525ba46 100644 --- a/deefuzzer/station.py +++ b/deefuzzer/station.py @@ -86,6 +86,8 @@ class Station(Thread): if 'type' in self.station['server']: self.type = self.station['server']['type'] # 'icecast' | 'stream-m' + else: + self.type = 'icecast' if 'stream-m' in self.type: self.channel = HTTPStreamer()