From d2f8f81f7113fec9c6c0888a8c102689f62e2657 Mon Sep 17 00:00:00 2001 From: Will Ehrich Date: Fri, 4 Jun 2021 16:15:47 -0700 Subject: [PATCH] Update PSExtendedLocation based on new SDK --- src/Network/Network/Models/PSExtendedLocation.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; }