aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/assets/player/peertube-plugin.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/assets/player/peertube-plugin.ts')
-rw-r--r--client/src/assets/player/peertube-plugin.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/assets/player/peertube-plugin.ts b/client/src/assets/player/peertube-plugin.ts
index ade8e2ee4..b4841b235 100644
--- a/client/src/assets/player/peertube-plugin.ts
+++ b/client/src/assets/player/peertube-plugin.ts
@@ -211,7 +211,7 @@ class PeerTubePlugin extends Plugin {
211 const body = new URLSearchParams() 211 const body = new URLSearchParams()
212 body.append('currentTime', currentTime.toString()) 212 body.append('currentTime', currentTime.toString())
213 213
214 const headers = new Headers({ 'Authorization': authorizationHeader }) 214 const headers = new Headers({ Authorization: authorizationHeader })
215 215
216 return fetch(url, { method: 'PUT', body, headers }) 216 return fetch(url, { method: 'PUT', body, headers })
217 } 217 }