From 408ebcb0dcfc868c83c8e797c979160c6e6034a5 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Thu, 19 Sep 2013 14:03:09 +0200 Subject: [PATCH] icecast server type by default --- deefuzzer/station.py | 2 ++ 1 file changed, 2 insertions(+) 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() -- 2.39.5