Merge remote-tracking branch 'origin/master'

This commit is contained in:
Weblate 2016-05-25 08:57:39 +02:00
commit 38b0578577

View file

@ -1574,8 +1574,8 @@ public class AudioVideoNotesPlugin extends OsmandPlugin {
r.lon = geo.getLongitude();
Float heading = app.getLocationProvider().getHeading();
Location loc = app.getLocationProvider().getLastKnownLocation();
if (lastTakingPhoto != null && lastTakingPhoto.getName().equals(f.getName()) && heading != null) {
float rot = heading.floatValue();
if (lastTakingPhoto != null && lastTakingPhoto.getName().equals(f.getName())) {
float rot = heading != null ? heading : 0;
try {
r.updatePhotoInformation(r.lat, r.lon, loc, rot == 0 ? Double.NaN : rot);
} catch (IOException e) {