mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 18:59:06 +01:00
Do not increment the attempt variable twice when requesting group info
This commit is contained in:
@@ -239,7 +239,7 @@ class HotspotManager implements ActionListener {
|
||||
if (valid || attempt >= MAX_GROUP_INFO_ATTEMPTS) {
|
||||
onHotspotStarted(group);
|
||||
} else {
|
||||
retryRequestingGroupInfo(attempt + 1);
|
||||
retryRequestingGroupInfo(attempt);
|
||||
}
|
||||
};
|
||||
try {
|
||||
|
||||
Reference in New Issue
Block a user