Bugfix: Locations without coordinates aren't good for Diaspora

This commit is contained in:
Michael 2016-11-13 17:42:26 +00:00
parent 724f9c80e7
commit 26936755d9
1 changed files with 2 additions and 1 deletions

View File

@ -2876,8 +2876,9 @@ class diaspora {
"created_at" => $created, "created_at" => $created,
"provider_display_name" => $item["app"]); "provider_display_name" => $item["app"]);
if (count($location) == 0) if (!isset($location["lat"]) OR !isset($location["lng"])) {
unset($message["location"]); unset($message["location"]);
}
$type = "status_message"; $type = "status_message";
} }