Skip to content

Commit

Permalink
fix AppPackage proto constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
Tabing010102 committed Oct 16, 2023
1 parent 5fe2df0 commit 70d5fe5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Librarian.Common/Models/AppPackage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public AppPackage(long internalId, TuiHub.Protos.Librarian.V1.AppPackage appPack
{
Id = internalId;
Source = appPackage.Source;
SourceAppId = appPackage.Id.Id;
SourceAppId = appPackage.SourceId.Id;
Name = appPackage.Name;
Description = string.IsNullOrEmpty(appPackage.Description) ? null : appPackage.Description;
IsPublic = appPackage.Public;
Expand Down

0 comments on commit 70d5fe5

Please sign in to comment.