Skip to content
Snippets Groups Projects
Commit ff7674b7 authored by Torsten Grote's avatar Torsten Grote
Browse files

Merge branch 'dont-increment-attempt-twice' into 'master'

Do not increment the attempt variable twice when requesting group info

See merge request !11
parents 85b35042 d42893b6
No related branches found
No related tags found
1 merge request!11Do not increment the attempt variable twice when requesting group info
...@@ -209,7 +209,7 @@ class HotspotManager implements ActionListener { ...@@ -209,7 +209,7 @@ class HotspotManager implements ActionListener {
frequency)); frequency));
requestGroupInfoForConnection(); requestGroupInfoForConnection();
} else { } else {
retryRequestingGroupInfo(attempt + 1); retryRequestingGroupInfo(attempt);
} }
}; };
try { try {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment