aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared
diff options
context:
space:
mode:
Diffstat (limited to 'shared')
-rw-r--r--shared/server-commands/videos/streaming-playlists-command.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/shared/server-commands/videos/streaming-playlists-command.ts b/shared/server-commands/videos/streaming-playlists-command.ts
index e7448aa69..f4bdb34ed 100644
--- a/shared/server-commands/videos/streaming-playlists-command.ts
+++ b/shared/server-commands/videos/streaming-playlists-command.ts
@@ -33,7 +33,7 @@ export class StreamingPlaylistsCommand extends AbstractCommand {
33 } catch (err) { 33 } catch (err) {
34 if (!withRetry || currentRetry > 5) throw err 34 if (!withRetry || currentRetry > 5) throw err
35 35
36 await wait(100) 36 await wait(250)
37 37
38 return this.get({ 38 return this.get({
39 ...options, 39 ...options,
@@ -68,7 +68,7 @@ export class StreamingPlaylistsCommand extends AbstractCommand {
68 } catch (err) { 68 } catch (err) {
69 if (!withRetry || currentRetry > 5) throw err 69 if (!withRetry || currentRetry > 5) throw err
70 70
71 await wait(100) 71 await wait(250)
72 72
73 return this.getFragmentedSegment({ 73 return this.getFragmentedSegment({
74 ...options, 74 ...options,
@@ -101,7 +101,7 @@ export class StreamingPlaylistsCommand extends AbstractCommand {
101 } catch (err) { 101 } catch (err) {
102 if (!withRetry || currentRetry > 5) throw err 102 if (!withRetry || currentRetry > 5) throw err
103 103
104 await wait(100) 104 await wait(250)
105 105
106 return this.getSegmentSha256({ 106 return this.getSegmentSha256({
107 ...options, 107 ...options,