]> git.sesse.net Git - remoteglot/commitdiff
Unbreak history storing again.
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Thu, 20 Nov 2014 23:17:09 +0000 (00:17 +0100)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Thu, 20 Nov 2014 23:17:09 +0000 (00:17 +0100)
remoteglot.pl

index 6fc0e8972b9483983e5177cdb3988ce2c75aa4a2..39a0f4ba805f4312f6a12afe69be7757a6ed0384 100755 (executable)
@@ -741,9 +741,9 @@ sub output_json {
        my $encoded = JSON::XS::encode_json($json);
        atomic_set_contents($remoteglotconf::json_output, $encoded);
 
-       if (exists($pos_calculating->{'history'}) &&
+       if (exists($pos_calculating->{'pretty_history'}) &&
            defined($remoteglotconf::json_history_dir)) {
-               my $halfmove_num = scalar @{$pos_calculating->{'history'}};
+               my $halfmove_num = scalar @{$pos_calculating->{'pretty_history'}};
                (my $fen = $pos_calculating->fen()) =~ tr,/ ,-_,;
                my $filename = $remoteglotconf::json_history_dir . "/move$halfmove_num-$fen.json";