From 0888898bd6f2aa4897bd89e84fa0bfd6f05a5099 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Thu, 14 Nov 2013 19:20:25 +0100 Subject: [PATCH] Fix UCI id parsing. --- remoteglot.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/remoteglot.pl b/remoteglot.pl index 3ec241b..6ee0f86 100755 --- a/remoteglot.pl +++ b/remoteglot.pl @@ -271,7 +271,7 @@ sub parse_ids { if ($x[0] =~ /^(name|author)$/) { my $key = shift @x; my $value = join(' ', @x); - $engine->{'info'}{'id'}{$key} = $value; + $engine->{'id'}{$key} = $value; last; } -- 2.39.2