Skip to content

Commit

Permalink
fix for DataDetectorTypes, v3.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
justdmitry committed Sep 6, 2022
1 parent 69d696f commit 829e086
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion PassKitHelper/Extensions/EnumExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public static string[] ToPassKitString(this DataDetectorType values)
return values
.ToString()
.Split(',')
.Select(x => x.Trim())
.Select(x => "PKDataDetectorType" + x.Trim())
.ToArray();
}
}
Expand Down
2 changes: 1 addition & 1 deletion PassKitHelper/PassKitHelper.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<RepositoryType>git</RepositoryType>
<PackageProjectUrl>https://github.com/justdmitry/PassKitHelper</PackageProjectUrl>
<RepositoryUrl>https://github.com/justdmitry/PassKitHelper.git</RepositoryUrl>
<Version>3.1.1</Version>
<Version>3.1.2</Version>
<Description>Helper library for all your Apple PassKit (Apple Wallet, Apple Passbook) needs: create passes, sign pass packages, receive webhooks into your aspnetcore app and send push updates to user devices. Apple Developer Account required!</Description>
<PackageTags>apple passkit passbook pass webservice</PackageTags>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
Expand Down

0 comments on commit 829e086

Please sign in to comment.