From f54c271ba9af487a9a4559574e223304e0b09329 Mon Sep 17 00:00:00 2001 From: Guardian1987 <53516713+Guardian1987@users.noreply.github.com> Date: Fri, 16 May 2025 11:10:48 +0200 Subject: [PATCH] Fix for https://github.com/advplyr/audiobookshelf/issues/4250 by increasing request size for very large podcasts archives. --- client/components/modals/podcast/EpisodeFeed.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/components/modals/podcast/EpisodeFeed.vue b/client/components/modals/podcast/EpisodeFeed.vue index 08f2f38c8..7ec14ccdc 100644 --- a/client/components/modals/podcast/EpisodeFeed.vue +++ b/client/components/modals/podcast/EpisodeFeed.vue @@ -244,8 +244,8 @@ export default { const sizeInMb = payloadSize / 1024 / 1024 const sizeInMbPretty = sizeInMb.toFixed(2) + 'MB' console.log('Request size', sizeInMb) - if (sizeInMb > 4.99) { - return this.$toast.error(`Request is too large (${sizeInMbPretty}) should be < 5Mb`) + if (sizeInMb > 9.99) { + return this.$toast.error(`Request is too large (${sizeInMbPretty}) should be < 10Mb`) } this.processing = true