Skip to content

Commit 1ca0d58

Browse files
committed
Fixed context vars handling
1 parent 7844e2d commit 1ca0d58

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Normalizer/DomainStringNormalizer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ private function stringify($data)
6666

6767
$value = (string) $data;
6868

69-
if (is_string($value) && preg_match('#^context:([a-zA-Z0-9_]+)#', $value, $matches)) {
69+
if (is_string($value) && preg_match('#^context:(.*)#', $value, $matches)) {
7070
return $matches[1];
7171
}
7272

0 commit comments

Comments
 (0)