mirror of https://bitbucket.org/ausocean/av.git
Merged in fix-rtmpurl-variable-load (pull request #508)
revid: Don't append Config.RTMPURL Resolves issue #409
This commit is contained in:
commit
a3c526b2e0
|
@ -586,10 +586,7 @@ var Variables = []struct {
|
|||
Type: typeString,
|
||||
Update: func(c *Config, v string) {
|
||||
v = strings.ReplaceAll(v, " ", "")
|
||||
split := strings.Split(v, ",")
|
||||
for _, s := range split {
|
||||
c.RTMPURL = append(c.RTMPURL, s)
|
||||
}
|
||||
c.RTMPURL = strings.Split(v, ",")
|
||||
},
|
||||
},
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue