Update FAQ
authorChocobozzz <me@florianbigard.com>
Wed, 21 Mar 2018 09:20:47 +0000 (10:20 +0100)
committerChocobozzz <me@florianbigard.com>
Wed, 21 Mar 2018 09:20:47 +0000 (10:20 +0100)
.github/CONTRIBUTING.md
FAQ.md
client/src/app/app.component.ts

index 3d90b70b9627b0478415ecca4bf3996a2079a9ef..c9988bfeab3348037550932d9721f913d283b7e5 100644 (file)
@@ -45,7 +45,7 @@ to install the dependencies.
 Then clone the sources and install node modules:
 
 ```
-$ git clone -b master https://github.com/Chocobozzz/PeerTube
+$ git clone https://github.com/Chocobozzz/PeerTube
 $ cd PeerTube
 $ yarn install --pure-lockfile
 ```
diff --git a/FAQ.md b/FAQ.md
index fb3969a041ef3acd6cc398453baffa3e5fb8ae86..0113b7c47d2399ecfc520921e9387563c41bc974 100644 (file)
--- a/FAQ.md
+++ b/FAQ.md
@@ -51,11 +51,7 @@ WEBM, MP4 or OGV videos.
 
 ## I want to change my host, how can I do that?
 
-If you already have followers, you can't.
-
-If you don't have any followers, update your configuration and run
-`NODE_ENV=production npm run update-host` to update the torrent files (they contain your domain name).
-
+You can't. You'll need to re install an instance and reupload your videos.
 
 ## Should I have a big server to run PeerTube?
 
index b9f7be48cff867d8def1bddd636c349677082319..0ea3c1389404a651bc703993e360d6e2190616f8 100644 (file)
@@ -87,7 +87,7 @@ export class AppComponent implements OnInit {
       .subscribe(() => {
         const config = this.serverService.getConfig()
 
-        // We test customCSS in case or the admin removed the css
+        // We test customCSS if the admin removed the css
         if (this.customCSS || config.instance.customizations.css) {
           const styleTag = '<style>' + config.instance.customizations.css + '</style>'
           this.customCSS = this.domSanitizer.bypassSecurityTrustHtml(styleTag)