mirror of
https://github.com/friendica/friendica
synced 2024-11-18 00:23:47 +00:00
Add check for exif data existence in mod/photos
This commit is contained in:
parent
e683bd60ae
commit
5ce13b210e
1 changed files with 1 additions and 1 deletions
|
@ -778,7 +778,7 @@ function photos_post(App $a)
|
|||
|
||||
// Create item container
|
||||
$lat = $lon = null;
|
||||
if ($exif && $exif['GPS'] && Feature::isEnabled($page_owner_uid, 'photo_location')) {
|
||||
if (!empty($exif['GPS']) && Feature::isEnabled($page_owner_uid, 'photo_location')) {
|
||||
$lat = Photo::getGps($exif['GPS']['GPSLatitude'], $exif['GPS']['GPSLatitudeRef']);
|
||||
$lon = Photo::getGps($exif['GPS']['GPSLongitude'], $exif['GPS']['GPSLongitudeRef']);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue