1
0
Fork 0
mirror of https://gitlab.com/futo-org/fcast.git synced 2025-06-24 21:25:23 +00:00

Receivers: Revert test cache quota size

This commit is contained in:
Michael Hollister 2025-06-11 17:15:31 -05:00
parent 7a0c865bb2
commit 1bc8e15406

View file

@ -52,8 +52,7 @@ export class MediaCache {
// @ts-ignore
if (TARGET === 'electron') {
// this.quota = Math.min(Math.floor(os.freemem() / 4), 4 * 1024 * 1024 * 1024); // 4GB
this.quota = Math.min(Math.floor(os.freemem() / 4), 35 * 1024 * 1024); // 4GB
this.quota = Math.min(Math.floor(os.freemem() / 4), 4 * 1024 * 1024 * 1024); // 4GB
// @ts-ignore
} else if (TARGET === 'webOS' || TARGET === 'tizenOS') {