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 12e96bd commit 355b99eCopy full SHA for 355b99e
Client/polyfills/temporary-aspnetcore-engine.ts
@@ -196,17 +196,27 @@ export function ngAspnetCoreEngine(
196
moduleRef.destroy();
197
198
}, (err) => {
199
+ // isStable subscription error (Template / code error)
200
reject(err);
201
});
202
203
+ }, err => {
204
+ // bootstrapModuleFactory error
205
+ reject(err);
206
207
+
208
209
+ // getFactory error
210
211
212
213
} catch (ex) {
214
+ // try/catch error
215
reject(ex);
216
}
217
218
219
220
221
222
/* ********************** Private / Internal ****************** */
0 commit comments