File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -189,6 +189,14 @@ export async function listenQueue(kv: Deno.Kv) {
189
189
} ) ;
190
190
191
191
console . log ( "Listing updated" ) ;
192
+ console . log (
193
+ "Images updated " ,
194
+ JSON . stringify (
195
+ images . map ( ( image ) => image . src ) ,
196
+ null ,
197
+ 2
198
+ )
199
+ ) ;
192
200
193
201
await transaction . commit ( ) ;
194
202
Original file line number Diff line number Diff line change @@ -16,7 +16,6 @@ app.get("/", async (c: Context) => {
16
16
l.project_name,
17
17
l.description,
18
18
l.is_scraped,
19
- l.address AS listing_address,
20
19
l.price,
21
20
l.price_formatted,
22
21
p.id AS property_id,
@@ -41,7 +40,7 @@ app.get("/", async (c: Context) => {
41
40
p.ai_generated_basic_features,
42
41
pt.type_name AS property_type_name,
43
42
wt.type_name AS warehouse_type_name,
44
- p .address AS property_address ,
43
+ l .address AS listing_address ,
45
44
rg.region AS listing_region_name,
46
45
ct.city AS listing_city_name,
47
46
ar.area AS listing_area_name,
You can’t perform that action at this time.
0 commit comments