mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 10:49:06 +01:00
Do not increment the attempt variable twice when requesting group info
This commit is contained in:
committed by
Torsten Grote
parent
b8009c35f1
commit
df38187288
@@ -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