[conf] Add speaker level option to disable AirPlay 1

This commit is contained in:
ejurgensen
2021-01-10 16:42:08 +01:00
parent 9805f03d10
commit 4e122303a1
3 changed files with 10 additions and 0 deletions

View File

@@ -4431,6 +4431,12 @@ raop_device_cb(const char *name, const char *type, const char *domain, const cha
{
DPRINTF(E_INFO, L_RAOP, "AirPlay device '%s' disappeared, but set as permanent in config\n", device_name);
return;
}
if (devcfg && cfg_getbool(devcfg, "raop_disable"))
{
DPRINTF(E_LOG, L_RAOP, "Disabling AirPlay 1 (RAOP) for device '%s' as set in config\n", device_name);
return;
}
if (devcfg && cfg_getstr(devcfg, "nickname"))