Compare commits
1 commit
main
...
device_err
Author | SHA1 | Date | |
---|---|---|---|
![]() |
5c9fd74dea |
1 changed files with 9 additions and 1 deletions
10
index.html
10
index.html
|
@ -368,7 +368,15 @@ __ __ _ __ ____ __
|
|||
}
|
||||
break;
|
||||
case "bytes":
|
||||
blockDevice = await CheerpX.HttpBytesDevice.create(image_url);
|
||||
try
|
||||
{
|
||||
blockDevice = await CheerpX.HttpBytesDevice.create(image_url);
|
||||
}
|
||||
catch(e)
|
||||
{
|
||||
printOnTerm.printError([e]);
|
||||
throw e;
|
||||
}
|
||||
break;
|
||||
case "github":
|
||||
blockDevice = await CheerpX.GitHubDevice.create(image_url);
|
||||
|
|
Loading…
Add table
Reference in a new issue