Skip to content

Commit

Permalink
feat: test new udi scheme
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelTaylor3D committed Sep 24, 2024
1 parent f6d0e3c commit 454e2bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/middleware/parseUdi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export const parseUdi = async (
// Split the pathSegment by periods to extract potential components
const parts = pathSegment.split(".");

if (parts.length === 1 && parts[0].length === 64) {
if (parts.length === 1 && parts[0].length !== 64) {
appendPath = `/${parts[0]}${appendPath}`;
}

Expand Down

0 comments on commit 454e2bb

Please sign in to comment.