philippe_44 wrote: 
> 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 Start() in Daemon.pm
> 
> > 
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);
  > 
--------------------
> > I don't think it is possible to sync a group player with members of the
same group. 

Sent from my SM-G900F using Tapatalk




------------------------------------------------------------------------
slartibartfast's Profile: http://forums.slimdevices.com/member.php?userid=35609
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