Merging sw-cleanup

This commit is contained in:
Matthew Raymer
2023-12-08 23:54:04 -05:00
parent 4078853558
commit 8ddf7d9532
2 changed files with 2267 additions and 2089 deletions

View File

@@ -446,16 +446,17 @@ export default class App extends Vue {
"Subscription or server communication failed:",
error,
);
alert( "Subscription or server communication failed. Try again in a while." );
alert(
"Subscription or server communication failed. Try again in a while.",
);
});
})
.catch((error) => {
console.error("An error occurred:", error);
alert( "Some error occurred." + error );
alert("Some error occurred." + error);
});
}
private urlBase64ToUint8Array(base64String: string): Uint8Array {
const padding = "=".repeat((4 - (base64String.length % 4)) % 4);
const base64 = (base64String + padding)

4349
src/util.d.ts vendored

File diff suppressed because it is too large Load Diff