[phonenumber validation & format] format and validation does not make the app fail when network is not available

This commit is contained in:
2020-03-10 09:48:59 +01:00
parent e348616d00
commit 7a952d6f88
3 changed files with 19 additions and 2 deletions

View File

@@ -47,6 +47,6 @@ class Templating extends AbstractExtension
public function formatPhonenumber($phonenumber)
{
return $this->phonenumberHelper->format($phonenumber);
return $this->phonenumberHelper->format($phonenumber) ?? $phonenumber;
}
}