[catavatar] Remove unused code

- The $seed variable isn't used in that function, which removes the need for the database call.
pull/1141/head
Benjamin Lorteau 2021-06-27 22:12:40 -04:00
parent acdb5c551f
commit 93892fd25a
1 changed files with 0 additions and 7 deletions

View File

@ -64,13 +64,6 @@ function catavatar_addon_settings_post(App $a, &$s)
return;
}
// delete the current cached cat avatar
$condition = ['uid' => local_user(), 'blocked' => false,
'account_expired' => false, 'account_removed' => false];
$user = DBA::selectFirst('user', ['email'], $condition);
$seed = DI::pConfig()->get(local_user(), 'catavatar', 'seed', md5(trim(strtolower($user['email']))));
if (!empty($_POST['catavatar-usecat'])) {
$url = DI::baseUrl()->get() . '/catavatar/' . local_user() . '?ts=' . time();