[airplay] Change logging for devices that don't have AirPlay 2 features field

Closes #1167 re announcement from Kodi
This commit is contained in:
ejurgensen 2021-01-12 17:59:43 +01:00
parent 74f4b2c8b2
commit 754f69bb10

View File

@ -4086,7 +4086,7 @@ airplay_device_cb(const char *name, const char *type, const char *domain, const
features = keyval_get(txt, "features");
if (!features || !strchr(features, ','))
{
DPRINTF(E_LOG, L_AIRPLAY, "AirPlay device '%s' error: Missing/unexpected 'features' in TXT field\n", name);
DPRINTF(E_WARN, L_AIRPLAY, "Not using AirPlay 2 for device '%s' as it does not have required 'features' in TXT field\n", name);
goto free_rd;
}