diff --git a/glob/manager_core.py b/glob/manager_core.py index e0b3a6fe..b1f34fd9 100644 --- a/glob/manager_core.py +++ b/glob/manager_core.py @@ -357,6 +357,8 @@ def normalize_channel(channel): return channel elif channel.startswith('http://') and get_config()['http_channel_enabled'] == True: return channel + elif channel.startswith('\\\\') or os.path.isabs(channel): + return channel tmp_dict = get_channel_dict() channel_url = tmp_dict.get(channel)