Skip to content

Commit

Permalink
Fixed patient extensions being missing
Browse files Browse the repository at this point in the history
  • Loading branch information
myungchoi committed Jan 25, 2022
1 parent ddbb8ca commit 3f6b4b1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
3 changes: 1 addition & 2 deletions src/GaTech.Chai.Cbs/CbsPatientProfile/CbsPatientRace.cs
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,7 @@ from extCode in value
private Extension AddOrUpdateRaceExtension()
{
var raceExt = new Extension() { Url = ProfileUrl };
patient.Extension.AddOrUpdateExtension(raceExt);
return raceExt;
return patient.Extension.AddOrUpdateExtension(raceExt);
}

/// <summary>
Expand Down
5 changes: 5 additions & 0 deletions src/GaTech.Chai.Cbs/GaTech.Chai.Cbs.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

<PropertyGroup>
<TargetFrameworks>net5.0;netstandard2.0</TargetFrameworks>
<PackageId>cbs-ig-donet</PackageId>
<PackageVersion>0.1.1</PackageVersion>
<Authors>Brian Ritchie, Myung Choi</Authors>
<PackageProjectUrl>https://cbsig.chai.gatech.edu/</PackageProjectUrl>
<Description>A .NET Library for Case Based Surveillance FHIR IG</Description>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit 3f6b4b1

Please sign in to comment.