From: Steinar H. Gunderson Date: Thu, 14 Nov 2013 18:20:25 +0000 (+0100) Subject: Fix UCI id parsing. X-Git-Url: https://git.sesse.net/?p=remoteglot;a=commitdiff_plain;h=0888898bd6f2aa4897bd89e84fa0bfd6f05a5099 Fix UCI id parsing. --- 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; }