mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-01-15 23:07:38 +01:00
[utils] Fix get_domain
Bug in ae61d108dd83a951b6e8a27e1fb969682416150d Closes #4344
This commit is contained in:
parent
cbd4f237b4
commit
ebf99aaf70
@ -2405,7 +2405,11 @@ def remove_quotes(s):
|
||||
|
||||
|
||||
def get_domain(url):
|
||||
return '.'.join(urllib.parse.urlparse(url).netloc.rsplit('.', 2)[-2:])
|
||||
"""
|
||||
This implementation is inconsistent, but is kept for compatibility.
|
||||
Use this only for "webpage_url_domain"
|
||||
"""
|
||||
return remove_start(urllib.parse.urlparse(url).netloc, 'www.') or None
|
||||
|
||||
|
||||
def url_basename(url):
|
||||
|
Loading…
x
Reference in New Issue
Block a user