Fix Exporting an egg in yaml format (#2172)

This commit is contained in:
Lance Pioch
2026-02-07 08:10:00 -05:00
committed by GitHub
parent 789c4c7284
commit ab4eadec32
2 changed files with 67 additions and 1 deletions

View File

@@ -92,7 +92,7 @@ class EggExporterService
return $this->yamlExport($decoded);
}
return str_replace(["\r\n", '\\r\\n', '\\n'], "\n", $data);
return str_replace("\r\n", "\n", $data);
}
if (is_array($data)) {