Browse Source

Fix 409 conflict in Peertube when a playlist with same name already exists (#20)

master^2
LecygneNoir 5 years ago
parent
commit
9426ca465c
1 changed files with 5 additions and 0 deletions
  1. +5
    -0
      lib/pt_upload.py

+ 5
- 0
lib/pt_upload.py View File

@ -88,6 +88,11 @@ def create_playlist(oauth, url, options):
jresponse = response.json()
jresponse = jresponse['videoChannel']
return jresponse['id']
if response.status_code == 409:
logging.error('Peertube: Error: It seems there is a conflict with an existing playlist, please beware '
'Peertube internal name is compiled from 20 firsts characters of playlist name.'
' Please check your playlist name an retry.')
exit(1)
else:
logging.error(('Peertube: The upload failed with an unexpected response: '
'%s') % response)

Loading…
Cancel
Save