Skip to content

Commit 08f8ae9

Browse files
srange fix. need to investigate why garbage symbols are passing here
1 parent 55d9a1e commit 08f8ae9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ function script:process_table_remotely($ps_table, $ps_fitnesse){
9696
$__pattern__ = "$($symbol.id):\d{6}:(?<value>.*?):\]"
9797
$slimsymbols[$symbol.name] = $result[$ps_computer] | select-string $__pattern__ | % {$_.matches} | % {
9898
if(Is-Numeric $_.Groups[1].Value){
99-
[int]$_.Groups[1].Value
99+
try { [int]$_.Groups[1].Value } catch { }
100100
}else{
101101
$_.Groups[1].Value
102102
}

0 commit comments

Comments
 (0)