Fix 401 detection on import videos

pull/309/head
Chocobozzz 2018-02-20 18:18:47 +01:00
parent 61b3e146e1
commit b6fe1f985c
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 1 additions and 1 deletions

View File

@ -148,7 +148,7 @@ async function uploadVideoOnPeerTube (videoInfo: any, videoPath: string, languag
try {
await uploadVideo(program['url'], accessToken, videoAttributes)
} catch (err) {
if (err.message.indexOf('401')) {
if (err.message.indexOf('401') !== -1) {
console.log('Got 401 Unauthorized, token may have expired, renewing token and retry.')
const res = await login(program['url'], client, user)