resend invites more aggressively

Was silently failing to send additional invitations when asked. This
should fix this. If this is too aggressive I hope I'll notice.
This commit is contained in:
Eric House 2022-05-13 18:12:33 -07:00
parent 90eabd45c0
commit 5d71d88cfb

View file

@ -2634,7 +2634,7 @@ public class BoardDelegate extends DelegateBase
private void tryInvites()
{
if ( 0 < m_mySIS.nMissing && m_summary.hasRematchInfo() ) {
tryRematchInvites( false );
tryRematchInvites( null != m_missingMeans );
} else if ( 0 < m_mySIS.nMissing && m_summary.hasInviteInfo() ) {
tryOtherInvites();
} else if ( null != m_missingDevs ) {