diff options
author | Chocobozzz <me@florianbigard.com> | 2019-12-06 17:25:15 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2019-12-06 17:25:15 +0100 |
commit | 39aad8cc856a8173e7a77c198b3968952d39f4b7 (patch) | |
tree | 56ffe5068b49bdf9bc13fb18184a6820fb0b9919 /client/src/app/shared/renderer | |
parent | 6f3fe96f4003fd9ad198cdf0ee5a47b32e9e6568 (diff) | |
download | PeerTube-39aad8cc856a8173e7a77c198b3968952d39f4b7.tar.gz PeerTube-39aad8cc856a8173e7a77c198b3968952d39f4b7.tar.zst PeerTube-39aad8cc856a8173e7a77c198b3968952d39f4b7.zip |
Don't seed on cellular networks
Diffstat (limited to 'client/src/app/shared/renderer')
-rw-r--r-- | client/src/app/shared/renderer/markdown.service.ts | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/client/src/app/shared/renderer/markdown.service.ts b/client/src/app/shared/renderer/markdown.service.ts index fc1f18c2b..629bbb140 100644 --- a/client/src/app/shared/renderer/markdown.service.ts +++ b/client/src/app/shared/renderer/markdown.service.ts | |||
@@ -85,8 +85,6 @@ export class MarkdownService { | |||
85 | let html = this.markdownParsers[ name ].render(markdown) | 85 | let html = this.markdownParsers[ name ].render(markdown) |
86 | html = this.avoidTruncatedTags(html) | 86 | html = this.avoidTruncatedTags(html) |
87 | 87 | ||
88 | console.log(html) | ||
89 | |||
90 | if (config.escape) return this.htmlRenderer.toSafeHtml(html) | 88 | if (config.escape) return this.htmlRenderer.toSafeHtml(html) |
91 | 89 | ||
92 | return html | 90 | return html |