Skip to content

Commit

Permalink
try
Browse files Browse the repository at this point in the history
  • Loading branch information
candwberry-admin committed Aug 24, 2024
1 parent 590751c commit 6f4cc95
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 @@ -576,7 +576,7 @@ async function google(query: string, baseUrl: string) {
clog(item.price);
if (item.price.includes("to")) {
item.price.replaceAll('£', '');
item.price == (item.price.split('to')[item.price.split('to').length - 1]).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 6f4cc95

Please sign in to comment.