diff --git a/mumbleBot.py b/mumbleBot.py
index 9d19548..df9b07a 100644
--- a/mumbleBot.py
+++ b/mumbleBot.py
@@ -373,7 +373,7 @@ class MumbleBot:
self.send_msg('Searching for stations - this may take some seconds...', text)
rb_stations = radiobrowser.getstations_byname(parameter)
msg = var.config.get('strings', 'rbqueryresult') + " :"
- msg += '\n
!rbplay ID | Station Name | Genre | Codec/Bitrate | Country | Homepage |
'
+ msg += '\n!rbplay ID | Station Name | Genre | Codec/Bitrate | Country |
'
if not rb_stations:
logging.debug('No matches found for rbquery ' + parameter)
self.send_msg('Radio-Browser found no matches for ' + parameter, text)
@@ -385,8 +385,7 @@ class MumbleBot:
codec = s['codec']
bitrate = s['bitrate']
genre = s['genre']
- homepage = s['homepage']
- msg += f'{stationid} | {stationname} | {genre} | {codec}/{bitrate} | {country} | {homepage}/ |
'
+ msg += f'{stationid} | {stationname} | {genre} | {codec}/{bitrate} | {country} |
'
msg += '
'
if len(msg) < 5000:
self.send_msg(msg, text)