mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-19 22:29:53 +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) {
|
if (valid || attempt >= MAX_GROUP_INFO_ATTEMPTS) {
|
||||||
onHotspotStarted(group);
|
onHotspotStarted(group);
|
||||||
} else {
|
} else {
|
||||||
retryRequestingGroupInfo(attempt + 1);
|
retryRequestingGroupInfo(attempt);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
try {
|
try {
|
||||||
|
|||||||
Reference in New Issue
Block a user