f510ac994c
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
8 lines
168 B
Go
8 lines
168 B
Go
package photoprism
|
|
|
|
// TimeZone returns the time zone where the photo was taken.
|
|
func (m *MediaFile) TimeZone() string {
|
|
data := m.MetaData()
|
|
|
|
return data.TimeZone
|
|
}
|