update
This commit is contained in:
@@ -7,7 +7,7 @@
|
|||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<Version>4.3.1</Version>
|
<Version>4.3.2</Version>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|||||||
@@ -45,7 +45,7 @@ public class UpdatePackageInfo(AppVersion version)
|
|||||||
set
|
set
|
||||||
{
|
{
|
||||||
if (Packages.Count == 0)
|
if (Packages.Count == 0)
|
||||||
Packages.Add(null!, new(value));
|
Packages.Add(string.Empty, new(value));
|
||||||
else
|
else
|
||||||
Packages.First().Value.Address = value;
|
Packages.First().Value.Address = value;
|
||||||
}
|
}
|
||||||
@@ -58,7 +58,7 @@ public class UpdatePackageInfo(AppVersion version)
|
|||||||
set
|
set
|
||||||
{
|
{
|
||||||
if (Packages.Count == 0)
|
if (Packages.Count == 0)
|
||||||
Packages.Add(null!, new(string.Empty));
|
Packages.Add(string.Empty, new(string.Empty));
|
||||||
Packages.First().Value.AddressType = value;
|
Packages.First().Value.AddressType = value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -70,7 +70,7 @@ public class UpdatePackageInfo(AppVersion version)
|
|||||||
set
|
set
|
||||||
{
|
{
|
||||||
if (Packages.Count == 0)
|
if (Packages.Count == 0)
|
||||||
Packages.Add(null!, new(string.Empty));
|
Packages.Add(string.Empty, new(string.Empty));
|
||||||
Packages.First().Value.PackageType = value;
|
Packages.First().Value.PackageType = value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user