Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/webtorrent/webtorrent.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFeross Aboukhadijeh <feross@feross.org>2015-01-27 05:04:18 +0300
committerFeross Aboukhadijeh <feross@feross.org>2015-01-27 05:04:18 +0300
commitbb07d4db0e213611899d834b022e00936172557e (patch)
tree898c2ab31961ddfa2bc0c950e5bd44b4e1522529 /lib/server.js
parenta3fdd9aafeb70f1fea545879131523b2906c3979 (diff)
JavaScript Standard Style
Diffstat (limited to 'lib/server.js')
-rw-r--r--lib/server.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/server.js b/lib/server.js
index 1e659b1..4a8f9b4 100644
--- a/lib/server.js
+++ b/lib/server.js
@@ -59,7 +59,10 @@ module.exports = function Server (torrent, opts) {
// Support DLNA streaming
res.setHeader('transferMode.dlna.org', 'Streaming')
- res.setHeader('contentFeatures.dlna.org', 'DLNA.ORG_OP=01;DLNA.ORG_CI=0;DLNA.ORG_FLAGS=017000 00000000000000000000000000')
+ res.setHeader(
+ 'contentFeatures.dlna.org',
+ 'DLNA.ORG_OP=01;DLNA.ORG_CI=0;DLNA.ORG_FLAGS=017000 00000000000000000000000000'
+ )
var range
if (req.headers.range) {