if not user ID is available and the url has a user id required then return no data

This commit is contained in:
Shaun
2019-02-05 08:04:29 +11:00
parent 98616772a4
commit 6f80da52cb

View File

@@ -569,6 +569,8 @@ class DownloadUtils():
if url.find("{userid}") != -1:
userid = self.getUserId()
if not userid:
return return_data
url = url.replace("{userid}", userid)
if url.find("{ItemLimit}") != -1: