This line is crashing in hangoutsclient.go / StartPolling():
c.lastSync = *getSelfInfo.ResponseHeader.CurrentServerTime
I have no experience with golang, so I can't debug it too well. But if I run it under a debugger, I find that this line:
getSelfInfo, _ := c.Client.GetSelfInfo()
is returning:
(*hangouts.GetSelfInfoResponse)(nil), &errors.errorString{s:"proto: bad wiretype for field hangouts.MoodContent.Segment: got wiretype 0, want 2"}
and so when it tries to dereference the nil, it crashes.
This line is crashing in hangoutsclient.go / StartPolling():
c.lastSync = *getSelfInfo.ResponseHeader.CurrentServerTime
I have no experience with golang, so I can't debug it too well. But if I run it under a debugger, I find that this line:getSelfInfo, _ := c.Client.GetSelfInfo()
is returning:(*hangouts.GetSelfInfoResponse)(nil), &errors.errorString{s:"proto: bad wiretype for field hangouts.MoodContent.Segment: got wiretype 0, want 2"}
and so when it tries to dereference the nil, it crashes.