diff --git a/etl/planning_data/obtain_livestream_data_and_load_into_database.py b/etl/planning_data/obtain_livestream_data_and_load_into_database.py index 5031789e..92aa2e32 100644 --- a/etl/planning_data/obtain_livestream_data_and_load_into_database.py +++ b/etl/planning_data/obtain_livestream_data_and_load_into_database.py @@ -39,6 +39,7 @@ def load_data_into_database(cursor, data): if entry['_source']['description'] != None: description = entry['_source']['description'].strip() application_id = entry['_source']['lpa_app_no'] + application_id_with_borough_identifier = entry['_source']['id'] decision_date = parse_date_string_into_date_object(entry['_source']['decision_date']) last_synced_date = parse_date_string_into_date_object(entry['_source']['last_synced']) uprn = entry['_source']['uprn'] @@ -87,7 +88,7 @@ def load_data_into_database(cursor, data): print("last_synced_date is treated as invalid:", entry["last_synced_date"]) entry["last_synced_date"] = None - if "Hackney" in entry["application_id"]: + if "Hackney" in application_id_with_borough_identifier: if entry["application_url"] != None: if "https://" not in entry["application_url"]: entry["application_url"] = "https://developmentandhousing.hackney.gov.uk" + entry["application_url"]