Skip to content

Commit

Permalink
Merge pull request #300 from cassproject/ce-1328a
Browse files Browse the repository at this point in the history
Check for undefined
  • Loading branch information
gloverkari authored Jan 11, 2024
2 parents 64cf0d6 + 07ce12f commit d8a9b57
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 d8a9b57

Please sign in to comment.