Handle newtork errors in dev builds
This commit is contained in:
parent
761b9f58c4
commit
26003da10c
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@
|
|||
const response = await this.$http.get('https://api.github.com/repos/wulkanowy/wulkanowy/pulls?state=open');
|
||||
return (await Promise.all(response.body.map(async (release) => {
|
||||
const redirectorUrl = `https://bitrise-redirector.herokuapp.com/v0.1/apps/f841f20d8f8b1dc8/builds/${release.head.ref}/artifacts/0/info`;
|
||||
const build = await this.$http.get(redirectorUrl);
|
||||
const build = await this.$http.get(redirectorUrl).catch(error => error);
|
||||
return {
|
||||
title: release.title,
|
||||
number: release.number,
|
||||
|
|
Loading…
Reference in a new issue