mirror of
https://github.com/owncast/owncast.git
synced 2024-11-21 20:28:15 +03:00
Fix I guess what was a typo
This commit is contained in:
parent
04dc0796d8
commit
a31076a591
1 changed files with 1 additions and 1 deletions
|
@ -100,7 +100,7 @@ func (s *IPFSStorage) GenerateRemotePlaylist(playlist string, variant models.Var
|
||||||
line := scanner.Text()
|
line := scanner.Text()
|
||||||
if line[0:1] != "#" {
|
if line[0:1] != "#" {
|
||||||
fullRemotePath := variant.GetSegmentForFilename(line)
|
fullRemotePath := variant.GetSegmentForFilename(line)
|
||||||
if fullRemotePath != nil {
|
if fullRemotePath == nil {
|
||||||
line = ""
|
line = ""
|
||||||
} else {
|
} else {
|
||||||
line = fullRemotePath.RemoteID
|
line = fullRemotePath.RemoteID
|
||||||
|
|
Loading…
Reference in a new issue