diff --git a/src/Network/Network/Models/PSExtendedLocation.cs b/src/Network/Network/Models/PSExtendedLocation.cs index 47300c7d4d25..7021a781363a 100644 --- a/src/Network/Network/Models/PSExtendedLocation.cs +++ b/src/Network/Network/Models/PSExtendedLocation.cs @@ -24,10 +24,10 @@ public PSExtendedLocation() public PSExtendedLocation(string EdgeZone) { - var extendedLocation = new ExtendedLocation(EdgeZone); + var extendedLocation = new ExtendedLocation(EdgeZone, ExtendedLocationTypes.EdgeZone); this.Name = extendedLocation.Name; - this.Type = ExtendedLocation.Type; + this.Type = extendedLocation.Type; } public string Name { get; set; }