We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Just close this if i'm wrong but...
at
mastodon_wordpress_autopost/autopost-to-mastodon/trunk/mastodon_autopost.php
Line 544 in c24f4ce
shouldn't
$post_tags = get_the_tags($id); if (sizeof($post_tags) > 0) { if ($post_tags) {
be instead
$post_tags = get_the_tags($id); if ($post_tags) { if (sizeof($post_tags) > 0) {
That is, check if post_tags is not null and THEN check its length rather than the other way around?
The text was updated successfully, but these errors were encountered:
Did you test it how it behaves with you change? If not please do so and then we know best if it still works as intended :D
Sorry, something went wrong.
No branches or pull requests
Just close this if i'm wrong but...
at
mastodon_wordpress_autopost/autopost-to-mastodon/trunk/mastodon_autopost.php
Line 544 in c24f4ce
shouldn't
be instead
That is, check if post_tags is not null and THEN check its length rather than the other way around?
The text was updated successfully, but these errors were encountered: