Skip to content

Commit

Permalink
hello
Browse files Browse the repository at this point in the history
  • Loading branch information
candwberry-admin committed Aug 24, 2024
1 parent 6f4cc95 commit 209fd30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/routes/api/google/+server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -575,7 +575,7 @@ async function google(query: string, baseUrl: string) {
console.log(item.price, ourPrice);
clog(item.price);
if (item.price.includes("to")) {
item.price.replaceAll('£', '');
item.price = item.price.replaceAll('£', '');
item.price = (item.price.split('to')[item.price.split('to').length - 1]).replaceAll(' ', '');
clog("Changing to");
clog(item.price);
Expand Down

0 comments on commit 209fd30

Please sign in to comment.