diff options
-rwxr-xr-x | modules/tracking.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/tracking.py b/modules/tracking.py index 9696afe..b59bc05 100755 --- a/modules/tracking.py +++ b/modules/tracking.py @@ -239,7 +239,7 @@ class PostNordModule(TrackingModule): event = lastevent['eventDescription'] location = lastevent.get('location') if location: - location = lastevent['location'].get('name') or lastevent['location'].get('city') + location = lastevent['location'].get('displayName') or lastevent['location'].get('city') if location: status = '%s (%s)' % (event, location) else: |