Added more gfycat links

This commit is contained in:
Ali Parlakci
2018-07-19 15:22:12 +03:00
parent c569124406
commit 41cbb58db3
2 changed files with 2 additions and 2 deletions

View File

@@ -56,6 +56,7 @@ It should redirect to a page which shows your **imgur_client_id** and **imgur_cl
### [19/07/2018](https://github.com/aliparlakci/bulk-downloader-for-reddit/tree/1a3836a8e1ba5d356de9778d179f25a1f1152432)
- Added v.redd.it support
- Added custom exception descriptions to FAILED.json file
- Fixed the bug that prevents downloading some gfycat URLs
### [13/07/2018](https://github.com/aliparlakci/bulk-downloader-for-reddit/tree/9f831e1b784a770c82252e909462871401a05c11)
- Change config.json file's path to home directory

View File

@@ -253,8 +253,7 @@ class Gfycat:
if url[-1:] == '/':
url = url[:-1]
if 'gifs' in url:
url = "https://gfycat.com/" + url.split('/')[-1]
url = "https://gfycat.com/" + url.split('/')[-1]
pageSource = (urllib.request.urlopen(url).read().decode().split('\n'))