Skip to content

Commit

Permalink
Merge pull request #141 from mash-up-kr/fix/parsing
Browse files Browse the repository at this point in the history
fix: Resolve Id Parsing Error In OriginPlace
  • Loading branch information
K-Diger authored Aug 11, 2024
2 parents a27693a + 32b318f commit d902c5f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ value class OriginMapId(val value: String) {
id: LongTypeId,
origin: Origin,
): OriginMapId {
return OriginMapId("${origin.prefix}$SEPARATOR$id")
return OriginMapId("${origin.prefix}$SEPARATOR${id.getValue()}")
}
}
}

0 comments on commit d902c5f

Please sign in to comment.