Hi Martin, That's funny but you just bumped into the same problem as Dave Pascoe. As I just told him in another thread, this is a known issue (LS-551). I think you can work around it by changing the order of your if-then-else, which would be more readable anyway:
On Fri, Aug 26, 2011 at 3:34 PM, Martin Hamant <[email protected]> wrote: > s = > if stream_metasource != "disabled" then > ... > s > else > s0 > end Change to: s = if stream_metasource == "disabled" then s0 else .... end If it doesn't work, another solution (simpler, in fact) is to force liquidsoap to see that the active source s0 can be considered as a normal source, by writing (s0 : source) instead of just s0. Hope this helps, David ------------------------------------------------------------------------------ EMC VNX: the world's simplest storage, starting under $10K The only unified storage solution that offers unified management Up to 160% more powerful than alternatives and 25% more efficient. Guaranteed. http://p.sf.net/sfu/emc-vnx-dev2dev _______________________________________________ Savonet-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/savonet-users
