diff --git a/client/src/assets/player/shared/stats/stats-card.ts b/client/src/assets/player/shared/stats/stats-card.ts index 830670271..ed2910fa2 100644 --- a/client/src/assets/player/shared/stats/stats-card.ts +++ b/client/src/assets/player/shared/stats/stats-card.ts @@ -146,7 +146,7 @@ class StatsCard extends Component { : undefined const resolution = level?.height - ? `${level?.height}p${level?.attrs['FRAME-RATE'] || ''}` + ? `${level.height}p${level?.attrs['FRAME-RATE'] || ''}` : undefined const buffer = this.timeRangesToString(this.player().buffered()) diff --git a/server/tests/api/live/live-permanent.ts b/server/tests/api/live/live-permanent.ts index 92eac9e5f..f5c67c579 100644 --- a/server/tests/api/live/live-permanent.ts +++ b/server/tests/api/live/live-permanent.ts @@ -99,7 +99,7 @@ describe('Permanent live', function () { }) it('Should stream into this permanent live', async function () { - this.timeout(120000) + this.timeout(240_000) const beforePublication = new Date() const ffmpegCommand = await servers[0].live.sendRTMPStreamInVideo({ videoId: videoUUID }) diff --git a/server/tests/api/server/jobs.ts b/server/tests/api/server/jobs.ts index 297206cf7..d9dee1776 100644 --- a/server/tests/api/server/jobs.ts +++ b/server/tests/api/server/jobs.ts @@ -19,7 +19,7 @@ describe('Test jobs', function () { let servers: PeerTubeServer[] before(async function () { - this.timeout(120000) + this.timeout(240000) servers = await createMultipleServers(2)