Skip to content

Commit

Permalink
Check for undefined
Browse files Browse the repository at this point in the history
  • Loading branch information
gloverkari committed Jan 11, 2024
1 parent 64cf0d6 commit 07ce12f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/server/adapter/ceasn/ceasn.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ let UUID = require('pure-uuid');


async function ceasnExportUriTransform(uri, frameworkUri) {
if (ceasnExportUriPrefix == null)
if (ceasnExportUriPrefix == null || !uri)
return uri;
if (uri.startsWith(ceasnExportUriPrefix))
return uri;
Expand Down

0 comments on commit 07ce12f

Please sign in to comment.