ОсновноеRadiotalkПользовательское
Технологии вещания, софт, скрипты
7   •   Посмотреть все темы

Liquidsoap 2.0 и инициализация переменных...

 

96
solariz @solariz
Во времена liquidsoap 1.4 прекрасно работало такое решение:
  1. def current_user = ref "" end
  2. def authorize (user, password) =
  3. ....[сut]
  4. cu = get_process_output("getusername.py #{password}")
  5. current_user := cu
  6. ....[сut]
  7. end
  8. def live_tag (j)
  9. rewrite_metadata([
  10. ("artist", !current_user),
  11. ], update=false, strip=true, j)
  12. end

теперь же, получаю ошибку:
Error 5: this value has type string but it should be a subtype of ref(_)

Если у вас, уважаемые есть какие-то мысли, подскажите пожалуйста.

0