Skip to content

Commit

Permalink
h5p editor: temporarily dont map errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ssmid committed Sep 22, 2023
1 parent 3f9e279 commit 0d3a031
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions apps/server/src/modules/h5p-editor/uc/h5p.uc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,8 @@ export class H5PEditorUc {

return result;
} catch (err) {
throw this.mapH5pError(err);
// throw this.mapH5pError(err);
throw err;
}
}

Expand Down Expand Up @@ -139,7 +140,8 @@ export class H5PEditorUc {

return result;
} catch (err) {
throw this.mapH5pError(err);
// throw this.mapH5pError(err);
throw err;
}
}

Expand Down

0 comments on commit 0d3a031

Please sign in to comment.