diff --git a/client/src/locale/source/angular_en_US.xml b/client/src/locale/source/angular_en_US.xml
index 4a71c6e17..e3c4e66a3 100644
--- a/client/src/locale/source/angular_en_US.xml
+++ b/client/src/locale/source/angular_en_US.xml
@@ -644,8 +644,8 @@
app/signup/signup.component.html16
-
-
+
+
app/signup/signup.component.html54
@@ -1308,9 +1308,9 @@
app/+about/about-peertube/about-peertube.component.html83
-
+
@@ -5272,12 +5272,16 @@ When you will upload a video in this channel, the video support field will be au
1
-
-
+
+
src/app/shared/forms/form-validators/user-validators.service.ts1
+
+ src/app/shared/forms/form-validators/video-channel-validators.service.ts
+ 1
+
@@ -5419,13 +5423,6 @@ When you will upload a video in this channel, the video support field will be au
1
-
-
-
- src/app/shared/forms/form-validators/video-channel-validators.service.ts
- 1
-
-
@@ -5433,8 +5430,8 @@ When you will upload a video in this channel, the video support field will be au
1
-
-
+
+
src/app/shared/forms/form-validators/video-channel-validators.service.ts1
@@ -5531,8 +5528,8 @@ When you will upload a video in this channel, the video support field will be au
1
-
-
+
+
src/app/shared/forms/form-validators/video-validators.service.ts1
diff --git a/server/helpers/peertube-crypto.ts b/server/helpers/peertube-crypto.ts
index cb5f27240..8ef7b1359 100644
--- a/server/helpers/peertube-crypto.ts
+++ b/server/helpers/peertube-crypto.ts
@@ -62,10 +62,7 @@ function isJsonLDSignatureVerified (fromActor: ActorModel, signedDocument: any)
return jsig.promises
.verify(signedDocument, options)
- .then((result: { verified: boolean }) => {
- logger.info('coucou', result)
- return result.verified
- })
+ .then((result: { verified: boolean }) => result.verified)
.catch(err => {
logger.error('Cannot check signature.', { err })
return false