We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3110e68 commit 05aa2d5Copy full SHA for 05aa2d5
src/ServiceBus/ServiceBus/Cmdlets/AzureServiceBusCmdletBase.cs
@@ -184,7 +184,7 @@ public static SkuTier ParseSkuTier(string skuTier)
184
public static TimeSpan ParseTimespan(string strTimespan)
185
{
186
TimeSpan tspan = new TimeSpan();
187
- if(strTimespan.Contains("P") || strTimespan.Contains("D") || strTimespan.Contains("T") || strTimespan.Contains("H") || strTimespan.Contains("M") || strTimespan.Contains("M"))
+ if(strTimespan.Contains("P") || strTimespan.Contains("D") || strTimespan.Contains("T") || strTimespan.Contains("H") || strTimespan.Contains("M"))
188
189
tspan = XmlConvert.ToTimeSpan(strTimespan);
190
}
0 commit comments