refactor(ApImageService.ts): JSON.stringify()でのindentationを追加

This commit is contained in:
okayurisotto 2023-07-03 06:10:35 +09:00
parent 244f6720c1
commit b651fb55dc

View File

@ -51,7 +51,7 @@ export class ApImageService {
}
if (typeof image.url !== 'string') {
throw new Error('invalid image: unexpected type of url: ' + JSON.stringify(image.url));
throw new Error('invalid image: unexpected type of url: ' + JSON.stringify(image.url, null, 2));
}
if (!checkHttps(image.url)) {