From 243105b2b403aced656d220dc9b07127262172fc Mon Sep 17 00:00:00 2001 From: the_great_kitsune Date: Thu, 16 Jan 2020 13:56:25 -0600 Subject: [PATCH] Fix propagationDelay being dropped for challenges --- plugins.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plugins.js b/plugins.js index 4d3c9f9..ef85d72 100644 --- a/plugins.js +++ b/plugins.js @@ -183,6 +183,9 @@ P._normalizeChallenge = function(name, ch) { } gch.get = wrappy(ch.get); } + if (ch.propagationDelay) { + gch.propagationDelay = ch.propagationDelay; + } return gch; }; -- 2.38.5