]> git.mxchange.org Git - friendica.git/blobdiff - include/Scrape.php
Only update contact when scrape runs with "probe_normal"
[friendica.git] / include / Scrape.php
index 3fead0c415d085ffcd0927922138f395691a0b5b..9913f360d6346ba35558fc6a90114f135c4cf0fa 100644 (file)
@@ -843,15 +843,15 @@ function probe_url($url, $mode = PROBE_NORMAL, $level = 1) {
                /// @todo temporary fix - we need a real contact update function that updates only changing fields
                /// The biggest problem is the avatar picture that could have a reduced image size.
                /// It should only be updated if the existing picture isn't existing anymore.
-               if (($result['network'] != NETWORK_FEED) AND $result["addr"] AND $result["name"] AND $result["nick"])
+               if (($result['network'] != NETWORK_FEED) AND ($mode == PROBE_NORMAL) AND
+                       $result["addr"] AND $result["name"] AND $result["nick"])
                        q("UPDATE `contact` SET `addr` = '%s', `alias` = '%s', `name` = '%s', `nick` = '%s',
-                               `name-date` = '%s', `uri-date` = '%s' WHERE `nurl` = '%s' AND NOT `self` AND `uid` = 0",
+                               `success_update` = '%s' WHERE `nurl` = '%s' AND NOT `self` AND `uid` = 0",
                                dbesc($result["addr"]),
                                dbesc($result["alias"]),
                                dbesc($result["name"]),
                                dbesc($result["nick"]),
                                dbesc(datetime_convert()),
-                               dbesc(datetime_convert()),
                                dbesc(normalise_link($result['url']))
                );
        }