[various] Fix PHP 8 deprecation warnings

This commit is contained in:
Hypolite Petovan 2022-11-19 19:19:30 -05:00
parent e8daa6b97d
commit f4130a9724
4 changed files with 6 additions and 7 deletions

View file

@ -266,7 +266,7 @@ function tumblr_hook_fork(App $a, array &$b)
$post = $b['data'];
if ($post['deleted'] || $post['private'] || ($post['created'] !== $post['edited']) ||
!strstr($post['postopts'], 'tumblr') || ($post['parent'] != $post['id'])) {
!strstr($post['postopts'] ?? '', 'tumblr') || ($post['parent'] != $post['id'])) {
$b['execute'] = false;
return;
}
@ -442,4 +442,3 @@ function tumblr_send(App $a, array &$b) {
}
}
}