diff --git a/web/src/client/mixins.js b/web/src/client/mixins.js index 78f5618b8..f5fba23f6 100644 --- a/web/src/client/mixins.js +++ b/web/src/client/mixins.js @@ -82,7 +82,12 @@ const WithIssues = (superclass, object_path) => class extends superclass { */ async getIssues() { const proxy = await this.client.proxy(ISSUES_IFACE, object_path); - return proxy.All.map(buildIssue); + try { + return proxy.All.map(buildIssue); + } catch (e) { + console.log(`Could not get the list of issues: ${e}`); + return []; + } } /**