t3k: No canceled message when user cancels before authenticating.

This commit is contained in:
Robin E.R. Davies
2026-05-29 21:09:07 -04:00
parent bfb55143e6
commit 356c0e42a7
2 changed files with 8 additions and 3 deletions
+5
View File
@@ -236,6 +236,11 @@ export class Tone3000DownloadHandler {
responseUri);
if (!tokenResponse.ok) {
if (tokenResponse.canceled === true)
{
this.onTone3000DownloadComplete("");
return;
}
throw new Error(tokenResponse.error);
}
if (tokenResponse.canceled) {