We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1563c15 commit 7dcd3b9Copy full SHA for 7dcd3b9
src/angular-app/bellows/core/api/json-rpc.service.ts
@@ -100,11 +100,7 @@ export class JsonRpcService {
100
type = 'You don\'t have sufficient privileges.';
101
break;
102
default:
103
- // silently swallow unknown exceptions and don't bug (heh) the user about things they can't fix
104
- // this.error.notify('Exception',
105
- // 'An exception occurred in the application, but\nthe developers have already been notified.',
106
- // response.data.error.message);
107
- return;
+ type = 'Exception';
108
}
109
this.error.error(type, response.data.error.message);
110
0 commit comments