From 4bd3b6fae363f5e7bcafd16c14537ec14e5a4ac9 Mon Sep 17 00:00:00 2001 From: nathom Date: Thu, 25 Mar 2021 19:43:05 -0700 Subject: [PATCH] Support for listen.tidal urls --- streamrip/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/streamrip/constants.py b/streamrip/constants.py index beb6402..7270890 100644 --- a/streamrip/constants.py +++ b/streamrip/constants.py @@ -132,7 +132,7 @@ FOLDER_FORMAT = ( TRACK_FORMAT = "{tracknumber}. {artist} - {title}" URL_REGEX = ( - r"https:\/\/(?:www|open|play)?\.?(\w+)\.com(?:(?:\/(track|playlist|album|" + r"https:\/\/(?:www|open|play|listen)?\.?(\w+)\.com(?:(?:\/(track|playlist|album|" r"artist|label))|(?:\/[-\w]+?))+\/(\w+)" )