Skip to content

Commit

Permalink
Merge pull request #48 from DIG-Network/release/v0.0.1-alpha.52
Browse files Browse the repository at this point in the history
Release/v0.0.1 alpha.52
  • Loading branch information
MichaelTaylor3D committed Sep 24, 2024
2 parents 0886833 + 6630089 commit 7164eaa
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [0.0.1-alpha.52](https://github.com/DIG-Network/dig-content-server/compare/v0.0.1-alpha.51...v0.0.1-alpha.52) (2024-09-24)


### Features

* test new udi scheme ([454e2bb](https://github.com/DIG-Network/dig-content-server/commit/454e2bb17173ccecad327b61823e888ae9739639))

### [0.0.1-alpha.51](https://github.com/DIG-Network/dig-content-server/compare/v0.0.1-alpha.50...v0.0.1-alpha.51) (2024-09-24)


Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dig-content-server",
"version": "0.0.1-alpha.51",
"version": "0.0.1-alpha.52",
"description": "",
"type": "commonjs",
"main": "./dist/index.js",
Expand Down
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 7164eaa

Please sign in to comment.