Use length variable, Comment deprecation of GetOnion
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/pr Build is failing Details

This commit is contained in:
Sarah Jamie Lewis 2021-11-01 14:09:46 -07:00
parent ead6a2698f
commit c62ecd6f71
3 changed files with 7 additions and 4 deletions

View File

@ -143,10 +143,10 @@ func (g *Group) GetMessage(index int) (bool, Message, int) {
length := len(g.Timeline.Messages)
if len(g.Timeline.Messages) > index {
if length > index {
return true, g.Timeline.Messages[index], length
}
return false, Message{}, len(g.Timeline.Messages)
return false, Message{}, length
}
// AddMessage takes a DecryptedGroupMessage and adds it to the Groups Timeline

View File

@ -249,6 +249,9 @@ type CwtchPeer interface {
StartServerConnections()
Shutdown()
// GetOnion is deprecated. If you find yourself needing to rely on this method it is time
// to consider replacing this with a GetAddress(es) function that can fully expand cwtch beyond the boundaries
// of tor v3 onion services.
// Deprecated
GetOnion() string