Skip to content
Snippets Groups Projects
Unverified Commit 032d928d authored by Éloïs's avatar Éloïs
Browse files

[fix] ws2p step incrementation

parent 3be08088
No related branches found
No related tags found
3 merge requests!1222Add startup scripts,!1220Stable/ws2p v1.1 trymerge,!1208Stable/ws2p v1.1
...@@ -533,7 +533,7 @@ export class WS2PCluster { ...@@ -533,7 +533,7 @@ export class WS2PCluster {
private incrementHeadsStep(heads:WS2PHead[]) { private incrementHeadsStep(heads:WS2PHead[]) {
for (let head of heads) { for (let head of heads) {
if (head.step) { if (head.step !== undefined) {
head.step++ head.step++
} }
} }
......
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