Skip to content

Commit

Permalink
add ", Tasmania" to addresses
Browse files Browse the repository at this point in the history
  • Loading branch information
markdon committed Oct 19, 2023
1 parent 89fce56 commit 9d1fc1e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ sqlite3_1.default.verbose();
const [council_reference, address, on_notice_from, on_notice_to, description,] = strings;
return {
council_reference,
address,
address: `${address}, Tasmania`,
description,
info_url,
date_scraped: new Date().toISOString(),
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ sqlite3.verbose();

return {
council_reference,
address,
address: `${address}, Tasmania`,
description,
info_url,
date_scraped: new Date().toISOString(),
Expand Down

0 comments on commit 9d1fc1e

Please sign in to comment.