fix(basic.gblib): update ChatServices.ts #420

Closed
eltociear wants to merge 2540 commits from patch-1 into main
Showing only changes of commit ab87996d60 - Show all commits

View file

@ -287,7 +287,8 @@ export class GBAdminService implements IGBAdminService {
const result = await fetch(url, options);
if (result.status != 200) {
throw new Error(`acquireElevatedToken error: ${result.status}: ${result.statusText}.`)
const text = await result.text();
throw new Error(`acquireElevatedToken error: ${result.status}: ${result.statusText} ${text}.`);
}
const text = await result.text();