peertube auth add wants a URL (and not a host)
authorChocobozzz <me@florianbigard.com>
Thu, 4 Jul 2019 13:03:15 +0000 (15:03 +0200)
committerChocobozzz <me@florianbigard.com>
Thu, 4 Jul 2019 13:03:15 +0000 (15:03 +0200)
server/tools/peertube-auth.ts

index ff5ffb60e90a36a56009df2359df7d0c2c52bec0..1035d664aa0af2fb391fbd4e6aa527d5f0463cd5 100644 (file)
@@ -39,7 +39,7 @@ async function setInstance (url: string, username: string, password: string, isD
 }
 
 function isURLaPeerTubeInstance (url: string) {
-  return isHostValid(url) || (url.includes('localhost'))
+  return url.startsWith('http://') || url.startsWith('https://')
 }
 
 program
@@ -61,6 +61,7 @@ program
         url: {
           description: 'instance url',
           conform: (value) => isURLaPeerTubeInstance(value),
+          message: 'It should be an URL (https://peertube.example.com)',
           required: true
         },
         username: {