Skip to content

Commit

Permalink
Tiny fix before merge
Browse files Browse the repository at this point in the history
  • Loading branch information
jesade-vbg committed Apr 17, 2023
1 parent 44d82cc commit 90ab0bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions new-client/src/utils/FetchWrapper.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ class FetchWrapper {
const appName =
document
.querySelector(`meta[name='app-name']`)
?.getAttribute("content") ?? "";
?.getAttribute("content") || "";
this.hash =
document
.querySelector(`meta[name='${appName}-git-hash']`)
?.getAttribute("content") ?? "";
?.getAttribute("content") || "";
this.useCacheBuster =
document
.querySelector(`meta[name='${appName}-use-cache-buster']`)
Expand Down

0 comments on commit 90ab0bf

Please sign in to comment.