Merge pull request #1065 from auouymous/fix-soundcloud

Prevent soundcloud from downloading existing episodes each update.
This commit is contained in:
auouymous 2021-06-15 01:02:30 -07:00 committed by GitHub
commit c31ba52f99
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -153,7 +153,7 @@ class SoundcloudUser(object):
'url': url,
'file_size': int(filesize),
'mime_type': filetype,
'guid': track.get('permalink', track.get('id')),
'guid': str(track.get('permalink', track.get('id'))),
'published': soundcloud_parsedate(track.get('created_at', None)),
}
finally: