Fix (#100)
This commit is contained in:
Родитель
663ed6d63e
Коммит
cc4ea60a9e
|
@ -34,7 +34,7 @@ export class VSTSProvider {
|
|||
const url: string = `${this._baseUrl}_apis/projects?api-version=${this._apiVersion}`;
|
||||
const requestInfo = this.getRequestInfo(HTTP_METHODS.GET);
|
||||
const res = await fetch(url, requestInfo);
|
||||
if (res.status === 203) {
|
||||
if (res.status === 203 || res.status === 401) {
|
||||
throw new Error(Messages.VstsCredsNotValidWarning);
|
||||
}
|
||||
const response = await res.json();
|
||||
|
|
Загрузка…
Ссылка в новой задаче