slartibartfast wrote: 
> Does it make any difference if the members of the group player are not
> enabled for Spotify Connect but the group is?
> 
> Sent from my SM-G900F using Tapatalk

I looked better at the code and in Daemon.pm (I was looking at an older
version), Michael has now chosen to use Slim::Player::Sync::syncname()
for the Spotify connect client name if players are synced when he
launches the connect daemon. 

So for normal but statically synced players, you'll see a concatenation
of all names with an "&" between names. 

For Group players, because the group is created on-the-fly when starting
to play, you should only see the name of the group because when the
connect daemon is launched the Group player is just one, non-synced
"fake" player - *unless* the group is already playing when the daemon is
being launched.

Now, if for any reason, the connect daemon is re-launched while the
group is playing, or if you have statically linked some players with the
Group player, you'll see all the members.

Knowing that the OP is the only one to see the problem, I think he has
by mistake statically linked players with the Group player

I can suggest, Michael, that you change Daemon.pmn in Start()

Code:
--------------------
    
  $self->name($client->isSynced() ? Slim::Player::Sync::syncname($client) : 
$client->name);
  
--------------------

by

Code:
--------------------
    
  $self->name($client->isSynced() && $client->model ne 'group' ? 
Slim::Player::Sync::syncname($client) : $client->name);
  
--------------------



LMS 7.7, 7.8 and 7.9 - 5xRadio, 3xBoom, 4xDuet, 1xTouch, 1 SB2. Sonos
PLAY:3, PLAY:5, Marantz NR1603, JBL OnBeat, XBoxOne, XBMC, Foobar2000,
ShairPortW, JRiver 21, 2xChromecast Audio, Chromecast v1 and v2, , Pi
B3, B2, Pi B+, 2xPi A+, Odroid-C1, Odroid-C2, Cubie2, Yamaha WX-010,
AppleTV 4, Airport Express, GGMM E5
------------------------------------------------------------------------
philippe_44's Profile: http://forums.slimdevices.com/member.php?userid=17261
View this thread: http://forums.slimdevices.com/showthread.php?t=108558

_______________________________________________
plugins mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/plugins

Reply via email to