diff --git a/profiles/audio/player.c b/profiles/audio/player.c
index c76352e..3cfe679 100644
--- a/profiles/audio/player.c
+++ b/profiles/audio/player.c
{
struct media_player *mp = data;
- return mp->scope != NULL;
+ return mp->folder != NULL;
}
static gboolean get_browsable(const GDBusPropertyTable *property,
struct media_player *mp = data;
dbus_bool_t value;
- if (mp->scope == NULL)
+ if (mp->folder == NULL)
return FALSE;
DBG("%s", mp->browsable ? "true" : "false");
{
struct media_player *mp = data;
- return mp->scope != NULL;
+ return mp->folder != NULL;
}
static gboolean get_searchable(const GDBusPropertyTable *property,