Skip to content

Commit

Permalink
feat: increase dom load time to 30s
Browse files Browse the repository at this point in the history
Signed-off-by: Patrick Erichsen <patrick.a.erichsen@gmail.com>
  • Loading branch information
Patrick-Erichsen committed Nov 6, 2021
1 parent 6163d7b commit a37a63d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions assets/manifest.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "Offie - Airbnb Wifi Reviews",
"description": "View Airbnb Wifi and workspace info from the search results page.",
"description": "View Wifi and workspace info from the Airbnb search results page.",
"manifest_version": 3,
"version": "0.0.6",
"version": "0.0.7",
"icons": {
"16": "img/offie-logo-16.png",
"48": "img/offie-logo-48.png",
Expand Down
2 changes: 1 addition & 1 deletion src/content/utils/dom.ts
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ export const waitForListingsLoad = async (): Promise<void> => {
let curWaitMs = 250;

const waitIntervalMs = 250;
const maxWaitMs = 10000;
const maxWaitMs = 30000;

return new Promise((resolve, reject) => {
const interval = setInterval(async () => {
Expand Down

0 comments on commit a37a63d

Please # to comment.