Merge branch '2101-dont-increment-attempt-twice' into '1081-share-app-via-wifi-hotspot'

Do not increment the attempt variable twice when requesting group info

See merge request briar/briar!1499
This commit is contained in:
Torsten Grote
2021-07-05 11:44:51 +00:00

View File

@@ -239,7 +239,7 @@ class HotspotManager implements ActionListener {
if (valid || attempt >= MAX_GROUP_INFO_ATTEMPTS) {
onHotspotStarted(group);
} else {
retryRequestingGroupInfo(attempt + 1);
retryRequestingGroupInfo(attempt);
}
};
try {