dchote / talkiepi

The talkiepi project is for a truly headless mumble client for the Raspberry Pi, utilizing static config and GPIO for status LEDs and a button for push to talk
Mozilla Public License 2.0
268 stars 107 forks source link

Fix for Child Channels in client.go #2

Closed s3m1s0n1c closed 4 years ago

s3m1s0n1c commented 6 years ago

Hey Guys,

Could this be added to the code for client.go

Remove lines 121-123 if b.ChannelName != "" { b.ChangeChannel(b.ChannelName) }

Add to line 121 for _, channel := range b.Client.Channels { if channel.Name == b.ChannelName { b.Client.Self.Move(channel) break } }

This will fix issues with unable to join to child channels in talkiepi

Thanks Sonic