Build 29085883

This commit is contained in:
Renan LE CARO 2025-04-20 14:43:24 +02:00
parent 0cfd75e7b2
commit ae2f43be0e
9 changed files with 9 additions and 15 deletions

View file

@ -1,5 +1,5 @@
// The version of the cache.
const VERSION = "29085797";
const VERSION = "29085883";
// The name of the cache
const CACHE_NAME = `breakout-71-${VERSION}`;

View file

@ -1 +1 @@
"29085797"
"29085883"

View file

@ -423,4 +423,3 @@ export function getCornerOffset(gameState: GameState) {
}
export const isInWebView = !!window.location.href.includes("isInWebView=true");
console.log({ isInWebView });

View file

@ -145,7 +145,6 @@ function blobToBase64(blob: Blob): Promise<string> {
let reader = new FileReader();
reader.onload = function () {
console.log(reader.result);
resolve(reader.result);
};
reader.onerror = function () {

View file

@ -68,6 +68,6 @@ export async function askForPersistentStorage() {
}
const persistent = await navigator.storage.persist();
if (!persistent) {
console.warn('No storage granted')
console.warn("No storage granted");
}
}