diff --git a/src/sidnEppAPI.php b/src/sidnEppAPI.php
index 69bdcea..c194e89 100644
--- a/src/sidnEppAPI.php
+++ b/src/sidnEppAPI.php
@@ -1050,6 +1050,7 @@ class SidnEppApi extends EppProtocol
 						$streets[] = $streetNodes->item($a)->nodeValue;
 					}
 				}
+
 				#var_dump($cityNode->length);
 				if ($cityNode instanceof DOMNodeList)
 				{
@@ -1070,9 +1071,12 @@ class SidnEppApi extends EppProtocol
 				$postalInfo = new SidnContactPostalInfo($name, $city, $countrycode);
 
 				$postalInfo->setOrganisationName($organisationName);
-				foreach ($streets as $street)
+				if (count($streets) > 0) 
 				{
-					$postalInfo->addStreet($street);
+					foreach ($streets as $street)
+    					{
+	    					$postalInfo->addStreet($street);
+					}
 				}
 
 				$postalInfo->setProvince($province);

