Skip to content

Commit

Permalink
Merge pull request #15 from cassandragemini29/fix_pl_issue
Browse files Browse the repository at this point in the history
Fix the PL issue
  • Loading branch information
kabuspl authored Oct 2, 2024
2 parents 90d0885 + a01e08b commit 85b3c39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bg.js
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ async function search(image) {
browser.tabs.create({url: "loading.html", index: active[0].index+1, active: !(settings.openInBG || false)}).then(async tab=>{
browser.tabs.onUpdated.addListener((tabId, changeInfo, tab) => {
if (changeInfo.status == "complete") {
browser.tabs.sendMessage(tab.id, { url: `https://lens.google.com/v3/upload?hl=pl&re=df&stcs=${Date.now()}&vpw=1920&vph=604&ep=subb`, image: image })
browser.tabs.sendMessage(tab.id, { url: `https://lens.google.com/v3/upload?re=df&stcs=${Date.now()}&vpw=1920&vph=604&ep=subb`, image: image })
}
}, { tabId: tab.id });
});
Expand Down

0 comments on commit 85b3c39

Please sign in to comment.