aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2021-03-24 11:16:03 +0000
committerMario <mario@mariovavti.com>2021-03-24 11:16:03 +0000
commit3d4ad94dccd3f3b0ee7b77408ca1c293b30fd922 (patch)
tree0184c5b2bd65a25453aa09797a3c51b078329d32
parent1a15c775f8b7b5f19ba7ba68730f31a20da402b5 (diff)
downloadvolse-hubzilla-3d4ad94dccd3f3b0ee7b77408ca1c293b30fd922.tar.gz
volse-hubzilla-3d4ad94dccd3f3b0ee7b77408ca1c293b30fd922.tar.bz2
volse-hubzilla-3d4ad94dccd3f3b0ee7b77408ca1c293b30fd922.zip
Revalidate imported profile photo on each request (patch provided by Max)
-rw-r--r--include/photo/photo_driver.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/photo/photo_driver.php b/include/photo/photo_driver.php
index 8de5185af..256369c69 100644
--- a/include/photo/photo_driver.php
+++ b/include/photo/photo_driver.php
@@ -239,7 +239,7 @@ function import_xchan_photo($photo, $xchan, $thing = false, $force = false) {
if($force || empty($modified))
$result = z_fetch_url($photo, true);
- elseif($exp - 60 < time()) {
+ else {
$h = [];
$h[] = "If-Modified-Since: " . gmdate("D, d M Y H:i:s", $exp) . " GMT";
if(! empty($etag))
@@ -247,6 +247,7 @@ function import_xchan_photo($photo, $xchan, $thing = false, $force = false) {
$result = z_fetch_url($photo, true, 0, [ 'headers' => $h ]);
}
+
if(isset($result)) {
$hdrs = [];
$h = explode("\n", $result['header']);