Remove unused

This commit is contained in:
Nick Mowen 2022-10-31 07:54:35 -06:00
parent ed0b34f9f6
commit 71038bb8f6
2 changed files with 0 additions and 3 deletions

View File

@ -173,8 +173,6 @@ http {
location /go2rtc/ { location /go2rtc/ {
proxy_pass http://go2rtc/; proxy_pass http://go2rtc/;
proxy_http_version 1.1; proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_set_header Host $host; proxy_set_header Host $host;
} }

View File

@ -13,7 +13,6 @@ import { usePersistence } from '../context';
import { useCallback, useMemo, useState } from 'preact/hooks'; import { useCallback, useMemo, useState } from 'preact/hooks';
import { useApiHost } from '../api'; import { useApiHost } from '../api';
import useSWR from 'swr'; import useSWR from 'swr';
import VideoPlayer from '../components/VideoPlayer';
import WebRtcPlayer from '../components/WebRtcPlayer'; import WebRtcPlayer from '../components/WebRtcPlayer';
import MsePlayer from '../components/MsePlayer'; import MsePlayer from '../components/MsePlayer';