]> git.mxchange.org Git - friendica-addons.git/commitdiff
And now it really works
authorMichael <heluecht@pirati.ca>
Fri, 13 Apr 2018 08:14:35 +0000 (08:14 +0000)
committerMichael <heluecht@pirati.ca>
Fri, 13 Apr 2018 08:14:35 +0000 (08:14 +0000)
catavatar/catavatar.php

index aaa8597265e875e188fd28412e6ff08a5cbd2ccc..9c1f2290f1f3851f630e7a8bfffafe4729f12742 100644 (file)
@@ -93,7 +93,7 @@ function catavatar_addon_settings_post(App $a, &$s)
 
 
        if (!empty($_POST['catavatar-usecat'])) {
-               $url = $a->get_baseurl() . '/catavatar/' . local_user();
+               $url = $a->get_baseurl() . '/catavatar/' . local_user() . '?ts=' . time();
 
                $self = dba::selectFirst('contact', ['id'], ['uid' => local_user(), 'self' => true]);
                if (!DBM::is_result($self)) {
@@ -200,7 +200,7 @@ function catavatar_content(App $a)
                throw new NotFoundException();
        }
 
-       $seed = PConfig::get(local_user(), "catavatar", "seed", md5(trim(strtolower($user['email']))));
+       $seed = PConfig::get($uid, "catavatar", "seed", md5(trim(strtolower($user['email']))));
 
        // from cat-avatar-generator.php
        $imageurl = $seed . "-" . $size;