diff options
Diffstat (limited to 'core/libdivecomputer.c')
-rw-r--r-- | core/libdivecomputer.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/core/libdivecomputer.c b/core/libdivecomputer.c index 5519afe46..aeca1b94c 100644 --- a/core/libdivecomputer.c +++ b/core/libdivecomputer.c @@ -596,8 +596,10 @@ static void parse_string_field(device_data_t *devdata, struct dive *dive, dc_fie parse_location(line, &location); - if (location.lat.udeg && location.lon.udeg) - dive->dive_site = create_dive_site_with_gps(str->value, &location, devdata->sites); + if (location.lat.udeg && location.lon.udeg) { + unregister_dive_from_dive_site(dive); + add_dive_to_dive_site(dive, create_dive_site_with_gps(str->value, &location, devdata->sites)); + } } } #endif |