diff options
Diffstat (limited to 'server/controllers/live.ts')
-rw-r--r-- | server/controllers/live.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/controllers/live.ts b/server/controllers/live.ts index cfb4741b7..f2686fb23 100644 --- a/server/controllers/live.ts +++ b/server/controllers/live.ts | |||
@@ -1,7 +1,7 @@ | |||
1 | import * as cors from 'cors' | 1 | import * as cors from 'cors' |
2 | import * as express from 'express' | 2 | import * as express from 'express' |
3 | import { mapToJSON } from '@server/helpers/core-utils' | 3 | import { mapToJSON } from '@server/helpers/core-utils' |
4 | import { LiveManager } from '@server/lib/live-manager' | 4 | import { LiveSegmentShaStore } from '@server/lib/live' |
5 | import { HttpStatusCode } from '@shared/core-utils/miscs/http-error-codes' | 5 | import { HttpStatusCode } from '@shared/core-utils/miscs/http-error-codes' |
6 | 6 | ||
7 | const liveRouter = express.Router() | 7 | const liveRouter = express.Router() |
@@ -22,7 +22,7 @@ export { | |||
22 | function getSegmentsSha256 (req: express.Request, res: express.Response) { | 22 | function getSegmentsSha256 (req: express.Request, res: express.Response) { |
23 | const videoUUID = req.params.videoUUID | 23 | const videoUUID = req.params.videoUUID |
24 | 24 | ||
25 | const result = LiveManager.Instance.getSegmentsSha256(videoUUID) | 25 | const result = LiveSegmentShaStore.Instance.getSegmentsSha256(videoUUID) |
26 | 26 | ||
27 | if (!result) { | 27 | if (!result) { |
28 | return res.status(HttpStatusCode.NOT_FOUND_404).end() | 28 | return res.status(HttpStatusCode.NOT_FOUND_404).end() |