Skip to content

Commit

Permalink
fix: update E-Tag to ETag for MediaMTX v1.1.1
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Dej <[email protected]>
  • Loading branch information
meteyou committed Oct 6, 2023
1 parent 6f9296a commit f2c66b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/webcams/WebrtcMediaMTX.vue
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ export default class WebrtcMediaMTX extends Mixins(BaseMixin, WebcamMixin) {
})
.then((res) => {
if (res.status !== 201) throw new Error('bad status code')
this.eTag = res.headers.get('E-Tag')
this.eTag = res.headers.get('ETag')
return res.text()
})
.then((sdp) => {
Expand Down

0 comments on commit f2c66b4

Please sign in to comment.