Fix propagationDelay being dropped for challenges

This commit is contained in:
the_great_kitsune 2020-01-16 13:56:25 -06:00
parent 6dc711b880
commit 243105b2b4
1 changed files with 3 additions and 0 deletions

View File

@ -183,6 +183,9 @@ P._normalizeChallenge = function(name, ch) {
}
gch.get = wrappy(ch.get);
}
if (ch.propagationDelay) {
gch.propagationDelay = ch.propagationDelay;
}
return gch;
};