1
0
mirror of https://github.com/nextcloud/ocsms.git synced 2026-08-23 06:13:09 +00:00

don't check for a photo unless any phone number given

since the identification / matching between contact and sms is the sms_address (which is compared with TEL entries) it makes no sense to check for the photo, unless there is at least one address given (the sms_address can also be a text string, but this would still match only in TEL entries).
This commit is contained in:
Martin Rüegg
2015-02-12 20:08:18 +01:00
parent eeb2f57901
commit a3accd7a77
+5 -5
View File
@@ -145,12 +145,12 @@ class OcSmsApp extends App {
else { else {
$this->pushPhoneNumberToCache($phoneIds, $r["FN"], $configuredCountry); $this->pushPhoneNumberToCache($phoneIds, $r["FN"], $configuredCountry);
} }
}
if (isset ($r["PHOTO"])) { if (isset ($r["PHOTO"])) {
// Remove useless prefix // Remove useless prefix
$photoURL = preg_replace("#VALUE=uri:#","",$r["PHOTO"]); $photoURL = preg_replace("#VALUE=uri:#","",$r["PHOTO"]);
self::$contactPhotos[$r["FN"]] = $photoURL; self::$contactPhotos[$r["FN"]] = $photoURL;
}
} }
} }
} }