소스 검색

print an error on the terminal if the HttpBytesDevice fails to initialize

Yuri Iozzelli 9 달 전
부모
커밋
5c9fd74dea
1개의 변경된 파일9개의 추가작업 그리고 1개의 파일을 삭제
  1. 9 1
      index.html

+ 9 - 1
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);