mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2022-04-11.git
synced 2024-08-15 00:43:26 +00:00
Fix url in storyboards
This commit is contained in:
parent
a2ab6b89f1
commit
af1823db8c
2 changed files with 5 additions and 5 deletions
|
@ -486,7 +486,7 @@ struct Video
|
|||
if storyboard = storyboards.try &.["spec"]?
|
||||
.try &.as_s
|
||||
return [{
|
||||
url: storyboard.split("#")[0].sub("M$M", "$N"),
|
||||
url: storyboard.split("#")[0],
|
||||
width: 106,
|
||||
height: 60,
|
||||
count: -1,
|
||||
|
@ -528,7 +528,7 @@ struct Video
|
|||
storyboard_height = storyboard_height.to_i
|
||||
|
||||
items << {
|
||||
url: "#{url}&sigh=#{sigh}".sub("$L", i),
|
||||
url: "#{url}&sigh=#{sigh}".sub("$L", i).sub("$N", "M$M"),
|
||||
width: width,
|
||||
height: height,
|
||||
count: count,
|
||||
|
|
Loading…
Reference in a new issue