Skip to content
Extraits de code Groupes Projets
Valider 4fdd05a3 rédigé par mattab's avatar mattab
Parcourir les fichiers

Fix bug where the segment is not detected as a pre-processed segment when it is one.

This is because the Segment->getString returns URL decoded segment value (with information loss as it cannot be safely URL re-encoded)
parent e6f30bfb
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
......@@ -69,7 +69,12 @@ class Rules
// If the requested segment is one of the segments to pre-process
// we ensure that any call to the API will trigger archiving of all reports for this segment
$segment = $segment->getString();
if (in_array($segment, $segmentsToProcess)) {
// Turns out the getString() above returns the URL decoded segment string
$segmentsToProcessUrlDecoded = array_map('urldecode', $segmentsToProcess);
if (in_array($segment, $segmentsToProcess)
|| in_array($segment, $segmentsToProcessUrlDecoded)) {
return true;
}
}
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter