- Migrated mediaGeoJson resolver to GORM
- Fixed issue loading media list in MediaList() function
- Fixed typo in the column "gps_lonitude" (renamed to "gps_longitude")
This commit is contained in:
stz184
2021-01-29 01:23:40 +02:00
parent fbebb13d28
commit f723bda7c5
5 changed files with 62 additions and 63 deletions

View File

@@ -123,7 +123,7 @@ func (p *internalExifParser) ParseExif(media *models.Media) (returnExif *models.
lat, long, err := exifTags.LatLong()
if err == nil {
newExif.GPSLatitude = &lat
newExif.GPSLonitude = &long
newExif.GPSLongitude = &long
}
returnExif = &newExif