Skip to content

Commit

Permalink
Fix url logging in load function (#1404)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanKingston committed Oct 21, 2022
1 parent b172e90 commit b0f99a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions shared/js/background/load.es6.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,14 +72,14 @@ async function loadExtensionFile (params) {
data
}
} else if (status === 304) {
console.log(`${url} returned 304, resource not changed`)
console.log(`${urlString} returned 304, resource not changed`)
return {
status,
date,
etag
}
} else {
throw new Error(`${url} returned ${response.status}`)
throw new Error(`${urlString} returned ${response.status}`)
}
})

Expand Down

0 comments on commit b0f99a3

Please sign in to comment.