Fix self endpoint discovery when sending webmentions
This commit is contained in:
parent
4f580973a7
commit
2b5a1d4472
2 changed files with 6 additions and 0 deletions
|
@ -63,6 +63,9 @@ class SendWebMentions extends Job implements ShouldQueue
|
||||||
if (parse_url($url, PHP_URL_HOST) == env('LONG_URL', 'localhost')) {
|
if (parse_url($url, PHP_URL_HOST) == env('LONG_URL', 'localhost')) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
if (starts_with($url, '/notes/tagged/') {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
$endpoint = null;
|
$endpoint = null;
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,8 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## Version 0.0.6.0 (2016-06-28)
|
||||||
|
- Fix an issue with sending webmentions
|
||||||
|
|
||||||
## Version 0.0.6 (2016-06-28)
|
## Version 0.0.6 (2016-06-28)
|
||||||
- Better use of `laravel-postgis`
|
- Better use of `laravel-postgis`
|
||||||
- Change style for inline mini-profile images
|
- Change style for inline mini-profile images
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue