From aee3430962ebfbf441917af38ca7deabae7e8367 Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Mon, 19 Dec 2022 23:19:20 +0000 Subject: [PATCH] fix strip[i].device.name bug patch bump --- lib/strip.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/strip.ps1 b/lib/strip.ps1 index 8b8d742..fdd7253 100644 --- a/lib/strip.ps1 +++ b/lib/strip.ps1 @@ -148,7 +148,7 @@ class Device : IStrip { return "Strip[" + $this.index + "].Device" } - hidden $_device = $($this | Add-Member ScriptProperty 'device' ` + hidden $_name = $($this | Add-Member ScriptProperty 'name' ` { $this.Getter_String('name') } `